Org.BouncyCastle.Cms.CmsSignedData.GetAttributeCertificates C# (CSharp) 메소드

GetAttributeCertificates() 공개 메소드

public GetAttributeCertificates ( string type ) : IX509Store
type string
리턴 IX509Store
		public IX509Store GetAttributeCertificates(
			string type)
		{
			if (attrCertStore == null)
			{
				attrCertStore = Helper.CreateAttributeStore(type, signedData.Certificates);
			}

			return attrCertStore;
		}