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 RequestInfo class.
Declaration
public RequestInfo(MethodInfo requestMethodInfo, object[] requestParameters, MessageHeaders messageHeaders)
Parameters
| Type | Name | Description |
|---|---|---|
| System.Reflection.MethodInfo | requestMethodInfo | The request's method information. |
| System.Object[] | requestParameters | The request's parameters. |
| MessageHeaders | 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 |
|---|---|
| MessageHeaders | The message headers sent with the request. |
RequestMethodInfo
Gets the request's method information.
Declaration
public MethodInfo RequestMethodInfo { get; }
Property Value
| Type | Description |
|---|---|
| System.Reflection.MethodInfo | The request's method information. |
RequestParameters
Gets the request's parameters.
Declaration
public object[] RequestParameters { get; }
Property Value
| Type | Description |
|---|---|
| System.Object[] | The request's parameters. |