Class RequestInfo
Represents information about a request invoked on a service.
Inheritance
System.Object
RequestInfo
Namespace: Copper.Common.Interface
Assembly: Copper.Common.dll
Syntax
public class RequestInfo
Constructors
View SourceRequestInfo(MethodInfo, Object[], MessageHeaders)
Initializes a new instance of the Request
Declaration
public RequestInfo(MethodInfo requestMethodInfo, object[] requestParameters, MessageHeaders messageHeaders)
Parameters
Type | Name | Description |
---|---|---|
System. |
requestMethodInfo | The request's method information. |
System. |
requestParameters | The request's parameters. |
Message |
messageHeaders | The message headers sent with the request. |
Properties
View SourceMessageHeaders
Gets the message headers sent with the request.
Declaration
public MessageHeaders MessageHeaders { get; }
Property Value
Type | Description |
---|---|
Message |
The message headers sent with the request. |
RequestMethodInfo
Gets the request's method information.
Declaration
public MethodInfo RequestMethodInfo { get; }
Property Value
Type | Description |
---|---|
System. |
The request's method information. |
RequestParameters
Gets the request's parameters.
Declaration
public object[] RequestParameters { get; }
Property Value
Type | Description |
---|---|
System. |
The request's parameters. |