Class Request
Represents business method request message.
Inheritance
System.Object
    Request
      
      
      
      
      
      
      
      
  Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 14.26.0Syntax
public class Request : ObjectConstructors
Request()
Initializes a new instance of the Request class.
Declaration
public Request()Request(String, EntityObject)
Initializes a new instance of the Request class.
Declaration
public Request(string method, EntityObject target)Parameters
| Type | Name | Description | 
|---|---|---|
| System.String | method | The method. | 
| EntityObject | target | The target. | 
Properties
Method
Gets or sets the method.
Declaration
public string Method { get; set; }Property Value
| Type | Description | 
|---|---|
| System.String | The method. | 
Parameters
Gets or sets the parameters.
Declaration
public RequestParameterCollection Parameters { get; set; }Property Value
| Type | Description | 
|---|---|
| RequestParameterCollection | The parameters. | 
Target
Gets or sets the target.
Declaration
public EntityObject Target { get; set; }Property Value
| Type | Description | 
|---|---|
| EntityObject | The target. | 
