XPathMessageQuery Constructors

Definition

Initializes a new instance of the XPathMessageQuery class.

Overloads

XPathMessageQuery()

Initializes a new instance of the XPathMessageQuery class.

XPathMessageQuery(String)

Initializes a new instance of the XPathMessageQuery class with the specified XPath expression.

XPathMessageQuery(String, XmlNamespaceManager)

Initializes a new instance of the XPathMessageQuery class with the specified XPath expression and XmlNamespaceManager.

XPathMessageQuery(String, XsltContext)

Initializes a new instance of the XPathMessageQuery class with the specified XPath expression and XsltContext.

XPathMessageQuery()

Initializes a new instance of the XPathMessageQuery class.

public:
 XPathMessageQuery();
public XPathMessageQuery ();
Public Sub New ()

Applies to

XPathMessageQuery(String)

Initializes a new instance of the XPathMessageQuery class with the specified XPath expression.

public:
 XPathMessageQuery(System::String ^ expression);
public XPathMessageQuery (string expression);
new System.ServiceModel.XPathMessageQuery : string -> System.ServiceModel.XPathMessageQuery
Public Sub New (expression As String)

Parameters

expression
String

The XPath expression.

Applies to

XPathMessageQuery(String, XmlNamespaceManager)

Initializes a new instance of the XPathMessageQuery class with the specified XPath expression and XmlNamespaceManager.

public:
 XPathMessageQuery(System::String ^ expression, System::Xml::XmlNamespaceManager ^ namespaces);
public XPathMessageQuery (string expression, System.Xml.XmlNamespaceManager namespaces);
new System.ServiceModel.XPathMessageQuery : string * System.Xml.XmlNamespaceManager -> System.ServiceModel.XPathMessageQuery
Public Sub New (expression As String, namespaces As XmlNamespaceManager)

Parameters

expression
String

The XPath expression.

namespaces
XmlNamespaceManager

The XML namespace manager.

Applies to

XPathMessageQuery(String, XsltContext)

Initializes a new instance of the XPathMessageQuery class with the specified XPath expression and XsltContext.

public:
 XPathMessageQuery(System::String ^ expression, System::Xml::Xsl::XsltContext ^ context);
public XPathMessageQuery (string expression, System.Xml.Xsl.XsltContext context);
new System.ServiceModel.XPathMessageQuery : string * System.Xml.Xsl.XsltContext -> System.ServiceModel.XPathMessageQuery
Public Sub New (expression As String, context As XsltContext)

Parameters

expression
String

The XPath expression.

context
XsltContext

The XSLT context.

Applies to