3 instantiations of CngProperty
System.Core (3)
System\Security\Cryptography\CngKey.cs (2)
102var property = new CngProperty( 653return new CngProperty(name, value, options);
System\Security\Cryptography\RsaCng.cs (1)
99CngProperty keySizeProperty = new CngProperty(NCryptNative.KeyPropertyName.Length,
14 references to CngProperty
System.Core (14)
System\Security\Cryptography\CngKey.cs (4)
102var property = new CngProperty( 639public CngProperty GetProperty(string name, CngPropertyOptions options) { 848foreach (CngProperty property in creationParameters.ParametersNoDemand) { 858public void SetProperty(CngProperty property) {
System\Security\Cryptography\CngProperty.cs (9)
16public struct CngProperty : IEquatable<CngProperty> { 79public static bool operator ==(CngProperty left, CngProperty right) { 83public static bool operator !=(CngProperty left, CngProperty right) { 88if (obj == null || !(obj is CngProperty)) { 92return Equals((CngProperty)obj); 95public bool Equals(CngProperty other) { 154public sealed class CngPropertyCollection : Collection<CngProperty> {
System\Security\Cryptography\RsaCng.cs (1)
99CngProperty keySizeProperty = new CngProperty(NCryptNative.KeyPropertyName.Length,