internal static void ThrowIfContextInvalid(X509ChainImpl impl) { if (!IsValid(impl)) { throw GetInvalidChainContextException(); } }
protected virtual void Dispose(bool disposing) { if (impl != null) { impl.Dispose(); impl = null; } }
public static bool IsValid(X509ChainImpl impl) { return(impl != null && impl.IsValid); }
internal static void ThrowIfContextInvalid (X509ChainImpl impl) { if (!IsValid (impl)) throw GetInvalidChainContextException (); }
public static bool IsValid (X509ChainImpl impl) { return impl != null && impl.IsValid; }
internal X509Chain(X509ChainImpl impl) { X509Helper2.ThrowIfContextInvalid(impl); this.impl = impl; }
public X509Chain(bool useMachineContext) { impl = X509Helper2.CreateChainImpl(useMachineContext); }
internal X509Chain (X509ChainImpl impl) { X509Helper2.ThrowIfContextInvalid (impl); this.impl = impl; }
public X509Chain (bool useMachineContext) { impl = X509Helper2.CreateChainImpl (useMachineContext); }
protected virtual void Dispose (bool disposing) { if (impl != null) { impl.Dispose (); impl = null; } }