Class AssetCompiledArgs
The class represents the argument of the AssetCompiled event raised by the ItemListCompiler class.
public class AssetCompiledArgs : EventArgs- Inheritance
- 
      objectAssetCompiledArgs
- Inherited Members
Constructors
AssetCompiledArgs(AssetItem, AssetCompilerResult)
Constructs an AssetCompiledArgs instance.
public AssetCompiledArgs(AssetItem asset, AssetCompilerResult result)Parameters
- assetAssetItem
- The asset that has been compiled. Cannot be null. 
- resultAssetCompilerResult
- The 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; }