Org.BouncyCastle.Cms.CmsSignedData.GetAttributeCertificates C# (CSharp) Method

GetAttributeCertificates() public method

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

			return attrCertStore;
		}