Class MethodInfo
Represents method info.
Inheritance
Inherited Members
Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 13.30.0Syntax
public class MethodInfo
Constructors
MethodInfo()
Initializes a new instance of the MethodInfo class.
Declaration
public MethodInfo()
MethodInfo(String, String, String, String, String, String, String)
Initializes a new instance of the MethodInfo class.
Declaration
public MethodInfo(string owner, string name, string friendlyName, string description, string requestType, string responseType, string defaultRequestHandlerType)
Parameters
Type | Name | Description |
---|---|---|
System.String | owner | The owner. |
System.String | name | The name. |
System.String | friendlyName | Name of the friendly. |
System.String | description | The description. |
System.String | requestType | Type of the request. |
System.String | responseType | Type of the response. |
System.String | defaultRequestHandlerType | Default type of the request handler. |
MethodInfo(String, String, String, String, Type, Type, Type)
Initializes a new instance of the MethodInfo class.
Declaration
public MethodInfo(string owner, string name, string friendlyName, string description, Type requestType, Type responseType, Type defaultRequestHandlerType)
Parameters
Type | Name | Description |
---|---|---|
System.String | owner | The owner. |
System.String | name | The name. |
System.String | friendlyName | Name of the friendly. |
System.String | description | The description. |
System.Type | requestType | Type of the request. |
System.Type | responseType | Type of the response. |
System.Type | defaultRequestHandlerType | Default type of the request handler. |
Properties
DefaultRequestHandlerType
Gets or sets the default type of the request handler.
Declaration
public Type DefaultRequestHandlerType { get; set; }
Property Value
Type | Description |
---|---|
System.Type | The default type of the request handler. |
DefaultRequestHandleTypeName
Gets or sets the default name of the request handle type.
Declaration
public string DefaultRequestHandleTypeName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The default name of the request handle type. |
Description
Gets or sets the description.
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System.String | The description. |
FriendlyName
Gets or sets the name of the friendly.
Declaration
public string FriendlyName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the friendly. |
MetaClassMask
Gets or sets the meta class mask.
Declaration
public string MetaClassMask { get; set; }
Property Value
Type | Description |
---|---|
System.String | The meta class mask. |
Name
Gets or sets the name.
Declaration
public string Name { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name. |
Owner
Gets or sets the owner.
Declaration
public string Owner { get; set; }
Property Value
Type | Description |
---|---|
System.String | The owner. |
Remarks
Owner can be system or module.
RequestType
Gets or sets the type of the request.
Declaration
public Type RequestType { get; set; }
Property Value
Type | Description |
---|---|
System.Type | The type of the request. |
RequestTypeName
Gets or sets the name of the request type.
Declaration
public string RequestTypeName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the request type. |
ResponseType
Gets or sets the type of the response.
Declaration
public Type ResponseType { get; set; }
Property Value
Type | Description |
---|---|
System.Type | The type of the response. |
ResponseTypeName
Gets or sets the name of the response type.
Declaration
public string ResponseTypeName { get; set; }
Property Value
Type | Description |
---|---|
System.String | The name of the response type. |