Opc.Ua.CertificateIdentifier.OpenStore C# (CSharp) Method

OpenStore() public method

Returns an object that can be used to access the store containing the certificate.
public OpenStore ( ) : ICertificateStore
return ICertificateStore
        public ICertificateStore OpenStore()
        {
            ICertificateStore store = CertificateStoreIdentifier.CreateStore(this.StoreType);
            store.Open(this.StorePath);
            return store;
        }