NBitcoin.BouncyCastle.Math.EC.ECCurve.CheckPoint C# (CSharp) Method

CheckPoint() protected method

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