Org.BouncyCastle.Asn1.Cms.Time.Time C# (CSharp) Method

Time() public method

public Time ( Asn1Object time ) : System
time Org.BouncyCastle.Asn1.Asn1Object
return System
		public Time(
            Asn1Object time)
        {
            if (!(time is DerUtcTime)
                && !(time is DerGeneralizedTime))
            {
                throw new ArgumentException("unknown object passed to Time");
            }

			this.time = time;
        }

Same methods

Time::Time ( System.DateTime date ) : System