13 references to CngProperty
System.Core (1)
System.Core.cs (1)
210[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CngProperty))]
System.Security.Cryptography (11)
System\Security\Cryptography\Cng.NotSupported.cs (2)
121public CngProperty GetProperty(string name, CngPropertyOptions options) => default; 123public void SetProperty(CngProperty property) { }
System\Security\Cryptography\CngProperty.cs (8)
17public struct CngProperty : IEquatable<CngProperty> 59return obj is CngProperty && Equals((CngProperty)obj); 62public bool Equals(CngProperty other) 108public static bool operator ==(CngProperty left, CngProperty right) 113public static bool operator !=(CngProperty left, CngProperty right)
System\Security\Cryptography\CngPropertyCollection.cs (1)
10public sealed class CngPropertyCollection : Collection<CngProperty>
System.Security.Cryptography.Cng (1)
System.Security.Cryptography.Cng.cs (1)
19[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Security.Cryptography.CngProperty))]