Class AssetCompiledArgs
The class represents the argument of the AssetCompiled event raised by the ItemListCompiler class.
public class AssetCompiledArgs : EventArgs
- Inheritance
-
AssetCompiledArgs
- Inherited Members
Constructors
AssetCompiledArgs(AssetItem, AssetCompilerResult)
Constructs an AssetCompiledArgs instance.
public AssetCompiledArgs(AssetItem asset, AssetCompilerResult result)
Parameters
asset
AssetItemThe asset that has been compiled. Cannot be null.
result
AssetCompilerResultThe result of the asset compilation. Cannot be null.
Properties
Asset
The asset item that has just been compiled.
public AssetItem Asset { get; set; }
Property Value
Result
The result of the asset compilation.
public AssetCompilerResult Result { get; set; }