AssemblyRegisteredEventArgs Class
Namespace: Stride.Core.ReflectionAssembly: Stride.Core.dll
An event occurring when an assembly is registered with AssemblyRegistry.
System.Object → System.EventArgs →
AssemblyRegisteredEventArgs
Derived from AssemblyRegisteredEventArgs:
public class AssemblyRegisteredEventArgs : EventArgs
Name | Description | |
---|---|---|
Constructors | ||
AssemblyRegisteredEventArgs(Assembly, HashSet<String>) | Initializes a new instance of the AssemblyRegisteredEventArgs class. |
|
Properties | ||
Assembly | Gets the assembly that has been registered. |
|
Categories | Gets the new categories registered for the specified Assembly |
Constructors
AssemblyRegisteredEventArgs(Assembly, HashSet<String>)
Initializes a new instance of the AssemblyRegisteredEventArgs class.
public AssemblyRegisteredEventArgs(Assembly assembly, HashSet<string> categories)
Parameters
Type | Name | Description |
---|---|---|
System.Reflection.Assembly | assembly | The assembly. |
System.Collections.Generic.HashSet<System.String> | categories | The categories. |
Properties
Assembly
Gets the assembly that has been registered.
public Assembly Assembly { get; }
Property Value
Type | Description |
---|---|
System.Reflection.Assembly | The assembly. |
Categories
Gets the new categories registered for the specified Assembly
public HashSet<string> Categories { get; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.HashSet<System.String> | The categories. |
Inherited Members
System.EventArgs.Empty