mscorlib(4.0.0.0) API with additions
Header.cs
1
using
System
.
Runtime
.
InteropServices
;
2
3
namespace
System.Runtime.Remoting.Messaging
4
{
6
[
Serializable
]
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
}
System.Runtime.InteropServices
Definition:
_Activator.cs:1
System.Runtime
Definition:
AssemblyTargetedPatchBandAttribute.cs:1
System
Definition:
__Canon.cs:3
System.Runtime.Remoting.Messaging.Header.Name
string Name
Contains the name of the T:System.Runtime.Remoting.Messaging.Header.
Definition:
Header.cs:11
System.Runtime.Remoting.Messaging.Header.Value
object Value
Contains the value for the T:System.Runtime.Remoting.Messaging.Header.
Definition:
Header.cs:14
System.Runtime.Remoting.Messaging.Header.Header
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
System.Runtime.Remoting.Messaging
Definition:
ArgMapper.cs:5
System.Runtime.Remoting.Messaging.Header.HeaderNamespace
string HeaderNamespace
Indicates the XML namespace that the current T:System.Runtime.Remoting.Messaging.Header belongs to.
Definition:
Header.cs:20
System.Runtime.Remoting.Messaging.Header
Defines the out-of-band data for a call.
Definition:
Header.cs:8
System.Runtime.Remoting.Messaging.Header.MustUnderstand
bool MustUnderstand
Indicates whether the receiving end must understand the out-of-band data.
Definition:
Header.cs:17
System.Reflection.TypeAttributes.Serializable
Specifies that the class can be serialized.
System.Runtime.Remoting.Messaging.Header.Header
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
System.Runtime.Remoting.Messaging.Header.Header
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
All cs
System.Runtime.Remoting.Messaging
Header.cs
Generated by
1.8.15