Class TriggerMethodInfo
Represents trigger method information.
Inheritance
System.Object
TriggerMethodInfo
Namespace: Mediachase.BusinessFoundation.Data.Meta.Management
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0Syntax
public class TriggerMethodInfo : Object
Constructors
TriggerMethodInfo()
Initializes a new instance of the TriggerMethodInfo class.
Declaration
public TriggerMethodInfo()
TriggerMethodInfo(MethodInfo, TriggerMethodType, String, String)
Initializes a new instance of the TriggerMethodInfo class.
Declaration
public TriggerMethodInfo(MethodInfo methodInfo, TriggerMethodType type, string name, string description)
Parameters
Type | Name | Description |
---|---|---|
System.Reflection.MethodInfo | methodInfo | The method info. |
TriggerMethodType | type | The type. |
System.String | name | The name. |
System.String | description | The description. |
Properties
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String | The description. |
InParameters
Gets or sets the in parameters.
Declaration
public ParameterInfo[] InParameters { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.ParameterInfo[] | The in parameters. |
MethodInfo
Gets or sets the method info.
Declaration
public MethodInfo MethodInfo { get; set; }
Property Value
Type | Description |
---|---|
System.Reflection.MethodInfo | The method info. |
MethodType
Gets or sets the type of the method.
Declaration
public TriggerMethodType MethodType { get; set; }
Property Value
Type | Description |
---|---|
TriggerMethodType | The type of the method. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Methods
ToString()
Returns a System.String that represents the current System.Object.
Declaration
public override string ToString()
Returns
Type | Description |
---|---|
System.String | A System.String that represents the current System.Object. |