System.Xml.XmlDictionaryReader.CreateMtomReader C# (CSharp) Method

CreateMtomReader() public static method

public static CreateMtomReader ( Stream stream, Encoding encoding, XmlDictionaryReaderQuotas quotas ) : XmlDictionaryReader
stream Stream
encoding System.Text.Encoding
quotas XmlDictionaryReaderQuotas
return XmlDictionaryReader
        public static XmlDictionaryReader CreateMtomReader(Stream stream, Encoding encoding, XmlDictionaryReaderQuotas quotas)
        {
            if (encoding == null)
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(encoding));

            return CreateMtomReader(stream, new Encoding[1] { encoding }, quotas);
        }

Same methods

XmlDictionaryReader::CreateMtomReader ( System stream, System encoding, System quotas ) : System.Xml.XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( System stream, System encodings, string contentType, System quotas ) : System.Xml.XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( System stream, System encodings, string contentType, System quotas, int maxBufferSize, System onClose ) : System.Xml.XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( byte buffer, int offset, int count, System encoding, System quotas ) : System.Xml.XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( byte buffer, int offset, int count, System encodings, string contentType, System quotas ) : System.Xml.XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( byte buffer, int offset, int count, System encodings, string contentType, System quotas, int maxBufferSize, System onClose ) : System.Xml.XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( Stream stream, Encoding encodings, string contentType, XmlDictionaryReaderQuotas quotas ) : XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( Stream stream, Encoding encodings, string contentType, XmlDictionaryReaderQuotas quotas, int maxBufferSize, OnXmlDictionaryReaderClose onClose ) : XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( byte buffer, int offset, int count, Encoding encoding, XmlDictionaryReaderQuotas quotas ) : XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( byte buffer, int offset, int count, Encoding encodings, string contentType, XmlDictionaryReaderQuotas quotas ) : XmlDictionaryReader
XmlDictionaryReader::CreateMtomReader ( byte buffer, int offset, int count, Encoding encodings, string contentType, XmlDictionaryReaderQuotas quotas, int maxBufferSize, OnXmlDictionaryReaderClose onClose ) : XmlDictionaryReader