Org.BouncyCastle.Ocsp.OcspReq.GetCertificates C# (CSharp) Метод

GetCertificates() публичный Метод

public GetCertificates ( string type ) : IX509Store
type string
Результат IX509Store
		public IX509Store GetCertificates(
			string type)
		{
			if (!this.IsSigned)
				return null;

			try
			{
				return X509StoreFactory.Create(
					"Certificate/" + type,
					new X509CollectionStoreParameters(this.GetCertList()));
			}
			catch (Exception e)
			{
				throw new OcspException("can't setup the CertStore", e);
			}
		}