Opc.Ua.CertificateIdentifier.OpenStore C# (CSharp) Метод

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

Returns an object that can be used to access the store containing the certificate.
public OpenStore ( ) : ICertificateStore
Результат ICertificateStore
        public ICertificateStore OpenStore()
        {
            ICertificateStore store = CertificateStoreIdentifier.CreateStore(this.StoreType);
            store.Open(this.StorePath);
            return store;
        }