System.Xml.XmlDictionaryReader.XmlWrappedReader.ReadContentAsString C# (CSharp) Méthode

ReadContentAsString() public méthode

public ReadContentAsString ( ) : string
Résultat string
            public override string ReadContentAsString()
            {
                try
                {
                    return _reader.ReadContentAsString();
                }
                catch (ArgumentException exception)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("String", exception));
                }
                catch (FormatException exception)
                {
                    throw DiagnosticUtility.ExceptionUtility.ThrowHelperError(XmlExceptionHelper.CreateConversionException("String", exception));
                }
            }