Header Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Initializes a new instance of the Header class.
Overloads
Header(String, Object) |
Initializes a new instance of the Header class with the given name and value. |
Header(String, Object, Boolean) |
Initializes a new instance of the Header class with the given name, value, and additional configuration information. |
Header(String, Object, Boolean, String) |
Initializes a new instance of the Header class. |
Header(String, Object)
Initializes a new instance of the Header class with the given name and value.
public:
Header(System::String ^ _Name, System::Object ^ _Value);
public Header (string _Name, object _Value);
new System.Runtime.Remoting.Messaging.Header : string * obj -> System.Runtime.Remoting.Messaging.Header
Public Sub New (_Name As String, _Value As Object)
Parameters
Applies to
Header(String, Object, Boolean)
Initializes a new instance of the Header class with the given name, value, and additional configuration information.
public:
Header(System::String ^ _Name, System::Object ^ _Value, bool _MustUnderstand);
public Header (string _Name, object _Value, bool _MustUnderstand);
new System.Runtime.Remoting.Messaging.Header : string * obj * bool -> System.Runtime.Remoting.Messaging.Header
Public Sub New (_Name As String, _Value As Object, _MustUnderstand As Boolean)
Parameters
- _MustUnderstand
- Boolean
Indicates whether the receiving end must understand the out-of-band data.
Applies to
Header(String, Object, Boolean, String)
Initializes a new instance of the Header class.
public:
Header(System::String ^ _Name, System::Object ^ _Value, bool _MustUnderstand, System::String ^ _HeaderNamespace);
public Header (string _Name, object _Value, bool _MustUnderstand, string _HeaderNamespace);
new System.Runtime.Remoting.Messaging.Header : string * obj * bool * string -> System.Runtime.Remoting.Messaging.Header
Public Sub New (_Name As String, _Value As Object, _MustUnderstand As Boolean, _HeaderNamespace As String)
Parameters
- _MustUnderstand
- Boolean
Indicates whether the receiving end must understand out-of-band data.