2 writes to customChannelBinding
System (2)
security\system\security\Authentication\ExtendedProtection\ExtendedProtectionPolicy.cs (2)
76this.customChannelBinding = customChannelBinding; 95customChannelBinding = SafeLocalFreeChannelBinding.LocalAlloc(channelBindingData.Length);
8 references to customChannelBinding
System (8)
security\system\security\Authentication\ExtendedProtection\ExtendedProtectionPolicy.cs (8)
96Marshal.Copy(channelBindingData, 0, customChannelBinding.DangerousGetHandle(), channelBindingData.Length); 117get { return customChannelBinding; } 129if (customChannelBinding == null) 135sb.Append(customChannelBinding.ToString()); 179if (customChannelBinding == null) 185byte[] channelBindingData = new byte[customChannelBinding.Size]; 186Marshal.Copy(customChannelBinding.DangerousGetHandle(), channelBindingData, 0, customChannelBinding.Size);