mscorlib(4.0.0.0) API with additions
Header.cs
2 
4 {
7  [ComVisible(true)]
8  public class Header
9  {
11  public string Name;
12 
14  public object Value;
15 
17  public bool MustUnderstand;
18 
20  public string HeaderNamespace;
21 
25  public Header(string _Name, object _Value)
26  : this(_Name, _Value, _MustUnderstand: true)
27  {
28  }
29 
34  public Header(string _Name, object _Value, bool _MustUnderstand)
35  {
36  Name = _Name;
37  Value = _Value;
38  MustUnderstand = _MustUnderstand;
39  }
40 
46  public Header(string _Name, object _Value, bool _MustUnderstand, string _HeaderNamespace)
47  {
48  Name = _Name;
49  Value = _Value;
50  MustUnderstand = _MustUnderstand;
51  HeaderNamespace = _HeaderNamespace;
52  }
53  }
54 }
Definition: __Canon.cs:3
string Name
Contains the name of the T:System.Runtime.Remoting.Messaging.Header.
Definition: Header.cs:11
object Value
Contains the value for the T:System.Runtime.Remoting.Messaging.Header.
Definition: Header.cs:14
Header(string _Name, object _Value)
Initializes a new instance of the T:System.Runtime.Remoting.Messaging.Header class with the given nam...
Definition: Header.cs:25
string HeaderNamespace
Indicates the XML namespace that the current T:System.Runtime.Remoting.Messaging.Header belongs to.
Definition: Header.cs:20
Defines the out-of-band data for a call.
Definition: Header.cs:8
bool MustUnderstand
Indicates whether the receiving end must understand the out-of-band data.
Definition: Header.cs:17
Specifies that the class can be serialized.
Header(string _Name, object _Value, bool _MustUnderstand)
Initializes a new instance of the T:System.Runtime.Remoting.Messaging.Header class with the given nam...
Definition: Header.cs:34
Header(string _Name, object _Value, bool _MustUnderstand, string _HeaderNamespace)
Initializes a new instance of the T:System.Runtime.Remoting.Messaging.Header class.
Definition: Header.cs:46