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

CreateMtomReader() public static méthode

public static CreateMtomReader ( byte buffer, int offset, int count, Encoding encoding, XmlDictionaryReaderQuotas quotas ) : XmlDictionaryReader
buffer byte
offset int
count int
encoding System.Text.Encoding
quotas XmlDictionaryReaderQuotas
Résultat XmlDictionaryReader
        public static XmlDictionaryReader CreateMtomReader(byte[] buffer, int offset, int count, Encoding encoding, XmlDictionaryReaderQuotas quotas)
        {
            if (encoding == null)
                throw DiagnosticUtility.ExceptionUtility.ThrowHelperArgumentNull(nameof(encoding));

            return CreateMtomReader(buffer, offset, count, 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 encoding, XmlDictionaryReaderQuotas quotas ) : 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 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