mscorlib(4.0.0.0) API with additions
ChannelBinding.cs
1 using Microsoft.Win32.SafeHandles;
2 
4 {
6  [global::__DynamicallyInvokable]
7  public abstract class ChannelBinding : SafeHandleZeroOrMinusOneIsInvalid
8  {
11  [global::__DynamicallyInvokable]
12  public abstract int Size
13  {
14  [global::__DynamicallyInvokable]
15  get;
16  }
17 
19  [global::__DynamicallyInvokable]
20  protected ChannelBinding()
21  : base(ownsHandle: true)
22  {
23  }
24 
27  [global::__DynamicallyInvokable]
28  protected ChannelBinding(bool ownsHandle)
29  : base(ownsHandle)
30  {
31  }
32  }
33 }
The T:System.Security.Authentication.ExtendedProtection.ChannelBinding class encapsulates a pointer t...
abstract int Size
The P:System.Security.Authentication.ExtendedProtection.ChannelBinding.Size property gets the size,...
ChannelBinding(bool ownsHandle)
Initializes a new instance of the T:System.Security.Authentication.ExtendedProtection....
ChannelBinding()
Initializes a new instance of the T:System.Security.Authentication.ExtendedProtection....