Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ ParseDocument()

static ParseState System.Security.Cryptography.XmlKeyHelper.ParseDocument ( string xmlString)
inlinestaticpackage

Definition at line 137 of file XmlKeyHelper.cs.

138 {
139 if (xmlString == null)
140 {
141 throw new ArgumentNullException("xmlString");
142 }
143 try
144 {
145 return ParseState.ParseDocument(xmlString);
146 }
147 catch (Exception inner)
148 {
149 throw new CryptographicException(System.SR.Cryptography_FromXmlParseError, inner);
150 }
151 }
static string Cryptography_FromXmlParseError
Definition SR.cs:58
Definition SR.cs:7

References System.SR.Cryptography_FromXmlParseError, and System.Security.Cryptography.XmlKeyHelper.ParseState.ParseDocument().

Referenced by System.Security.Cryptography.DSA.FromXmlString(), and System.Security.Cryptography.RSA.FromXmlString().