System.Xml.XmlConvert.VerifyQName C# (CSharp) Méthode

VerifyQName() static private méthode

static private VerifyQName ( string name ) : string
name string
Résultat string
        internal static string VerifyQName(string name)
        {
            return VerifyQName(name, ExceptionType.XmlException);
        }

Same methods

XmlConvert::VerifyQName ( string name, ExceptionType exceptionType ) : string

Usage Example

Exemple #1
0
 public override Task WriteNameAsync(string name)
 {
     if (_checkNames)
     {
         XmlConvert.VerifyQName(name, ExceptionType.XmlException);
     }
     return(writer.WriteNameAsync(name));
 }
All Usage Examples Of System.Xml.XmlConvert::VerifyQName