Class MessageTemplateMatch
Represents a result of message matching operation executed with a specific message template.
Inheritance
System.Object
MessageTemplateMatch
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: Nevatech.Vsb.Repository.Services.Web
Assembly: Nevatech.Vsb.Repository.dll
Syntax
public sealed class MessageTemplateMatch
Constructors
MessageTemplateMatch()
Initializes an empty instance.
Declaration
public MessageTemplateMatch()
Properties
Data
Gets or sets an object associated with this instance.
Declaration
public object Data { get; set; }
Property Value
Type | Description |
---|---|
System.Object |
HttpMethod
Gets or sets the matched HTTP method.
Declaration
public string HttpMethod { get; set; }
Property Value
Type | Description |
---|---|
System.String |
UnknownHttpHeaders
Gets collection of HTTP headers that were not defined in the message template, but were present in the matched message.
Declaration
public WebHeaderCollection UnknownHttpHeaders { get; }
Property Value
Type | Description |
---|---|
System.Net.WebHeaderCollection |
UnknownQueryParameters
Gets collection of URI query parameters that were not defined in the message template, but were present in the matched message.
Declaration
public NameValueCollection UnknownQueryParameters { get; }
Property Value
Type | Description |
---|---|
System.Collections.Specialized.NameValueCollection |
UriTemplateMatch
Gets or sets the result of URI matching.
Declaration
public UriTemplateMatch UriTemplateMatch { get; set; }
Property Value
Type | Description |
---|---|
System.UriTemplateMatch |
Variables
Gets collection of variables and their matched values defined in the message template.
Declaration
public NameValueCollection Variables { get; }
Property Value
Type | Description |
---|---|
System.Collections.Specialized.NameValueCollection |