Example #1
0
        /// <inheritdoc cref="SignedXml(XmlDocument)"/>
        public GostSignedXml(XmlDocument document)
        {
            if (document == null)
            {
                throw ExceptionUtility.ArgumentNull(nameof(document));
            }

            _signedXml = new GostSignedXmlImpl(document);
        }
Example #2
0
        public GostSignedXml(XmlDocument document)
        {
            if (document == null)
            {
                throw new ArgumentNullException("document");
            }

            _signedXml = new GostSignedXmlImpl(document);
        }
Example #3
0
        public GostSignedXml(XmlElement element)
        {
            if (element == null)
            {
                throw new ArgumentNullException("element");
            }

            _signedXml = new GostSignedXmlImpl(element);
        }
Example #4
0
 /// <inheritdoc cref="SignedXml()"/>
 public GostSignedXml()
 {
     _signedXml = new GostSignedXmlImpl();
 }