2 overrides of ExportParameters
System.Security.Cryptography (2)
System\Security\Cryptography\ECDiffieHellmanCngPublicKey.cs (1)
134public override ECParameters ExportParameters()
System\Security\Cryptography\ECDiffieHellmanWrapper.cs (1)
179public override ECParameters ExportParameters() => _wrapped.ExportParameters();
7 references to ExportParameters
System.Security.Cryptography (7)
System\Security\Cryptography\ECDiffieHellmanCng.Derive.cs (2)
28ECParameters otherPartyParameters = otherPartyPublicKey.ExportParameters(); 110ECParameters otherPartyParameters = otherPartyPublicKey.ExportParameters();
System\Security\Cryptography\ECDiffieHellmanPublicKey.ExportParameters.cs (4)
46/// The member <see cref="ExportParameters" /> has not been overridden in a derived class. 52ECParameters ecParameters = ExportParameters(); 64/// The member <see cref="ExportParameters" /> has not been overridden in a derived class. 70ECParameters ecParameters = ExportParameters();
System\Security\Cryptography\ECDiffieHellmanWrapper.cs (1)
179public override ECParameters ExportParameters() => _wrapped.ExportParameters();