Show / Hide Table of Contents

    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 Source

    RequestInfo(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 Source

    MessageHeaders

    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.

    View Source

    RequestMethodInfo

    Gets the request's method information.

    Declaration
    public MethodInfo RequestMethodInfo { get; }
    Property Value
    Type Description
    System.Reflection.MethodInfo

    The request's method information.

    View Source

    RequestParameters

    Gets the request's parameters.

    Declaration
    public object[] RequestParameters { get; }
    Property Value
    Type Description
    System.Object[]

    The request's parameters.

    • View Source
    Back to top Generated by DocFX