Opc.Ua.CertificateStoreIdentifier.ToString C# (CSharp) Method

ToString() public method

Returns a T:System.String that represents the current T:System.Object.
public ToString ( ) : string
return string
        public override string ToString()
        {
            if (String.IsNullOrEmpty(this.StoreType))
            {
                return Utils.Format("{0}", this.StorePath);
            }

            return Utils.Format("[{0}]{1}", this.StoreType, this.StorePath);
        }
        #endregion

Same methods

CertificateStoreIdentifier::ToString ( string format, IFormatProvider formatProvider ) : string