System.Xml.XmlDictionaryReader.XmlWrappedReader.ReadContentAsString C# (CSharp) Method

ReadContentAsString() public method

public ReadContentAsString ( ) : string
return 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));
                }
            }