DerivedClassMustOverride() private static méthode

private static DerivedClassMustOverride ( ) : Exception
Résultat Exception
Exemple #1
0
 protected virtual byte[] HashData(Stream data, HashAlgorithmName hashAlgorithm)
 {
     throw RSA.DerivedClassMustOverride();
 }
Exemple #2
0
 public virtual bool VerifyHash(byte[] hash, byte[] signature, HashAlgorithmName hashAlgorithm, RSASignaturePadding padding)
 {
     throw RSA.DerivedClassMustOverride();
 }
Exemple #3
0
 protected virtual byte[] HashData(byte[] data, int offset, int count, HashAlgorithmName hashAlgorithm)
 {
     throw RSA.DerivedClassMustOverride();
 }
Exemple #4
0
 public virtual byte[] Decrypt(byte[] data, RSAEncryptionPadding padding)
 {
     throw RSA.DerivedClassMustOverride();
 }