NBitcoin.BouncyCastle.Math.EC.ECCurve.CheckPoint C# (CSharp) Méthode

CheckPoint() protected méthode

protected CheckPoint ( NBitcoin.BouncyCastle.Math.EC.ECPoint point ) : void
point NBitcoin.BouncyCastle.Math.EC.ECPoint
Résultat void
		protected virtual void CheckPoint(ECPoint point)
		{
			if(null == point || (this != point.Curve))
				throw new ArgumentException("must be non-null and on this curve", "point");
		}