NBitcoin.BouncyCastle.Math.EC.ECCurve.CheckPoint C# (CSharp) 메소드

CheckPoint() 보호된 메소드

protected CheckPoint ( NBitcoin.BouncyCastle.Math.EC.ECPoint point ) : void
point NBitcoin.BouncyCastle.Math.EC.ECPoint
리턴 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");
		}