SaaS CMS has officially launched! Learn more now.

Class Request

Represents business method request message.

Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Mediachase.BusinessFoundation.Data.Business
Assembly: Mediachase.BusinessFoundation.Data.dll
Version: 11.8.3
Syntax
public class Request

Constructors

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.