IXmlTextReaderInitializer.SetInput 메서드

정의

이 메서드를 구현하는 XML 텍스트 판독기 초기화 요구 사항을 지정합니다.

오버로드

Name Description
SetInput(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

스트림을 읽는 XML 텍스트 판독기 초기화 요구 사항을 지정합니다.

SetInput(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

버퍼를 읽는 XML 텍스트 판독기 초기화 요구 사항을 지정합니다.

SetInput(Stream, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs

스트림을 읽는 XML 텍스트 판독기 초기화 요구 사항을 지정합니다.

public:
 void SetInput(System::IO::Stream ^ stream, System::Text::Encoding ^ encoding, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public void SetInput(System.IO.Stream stream, System.Text.Encoding? encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose? onClose);
public void SetInput(System.IO.Stream stream, System.Text.Encoding encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose onClose);
abstract member SetInput : System.IO.Stream * System.Text.Encoding * System.Xml.XmlDictionaryReaderQuotas * System.Xml.OnXmlDictionaryReaderClose -> unit
Public Sub SetInput (stream As Stream, encoding As Encoding, quotas As XmlDictionaryReaderQuotas, onClose As OnXmlDictionaryReaderClose)

매개 변수

stream
Stream

읽을 스트림입니다.

encoding
Encoding

스트림의 문자 인코딩입니다.

quotas
XmlDictionaryReaderQuotas

적용할 값입니다 XmlDictionaryReaderQuotas .

onClose
OnXmlDictionaryReaderClose

판독기를 닫을 때 호출할 대리자입니다.

적용 대상

SetInput(Byte[], Int32, Int32, Encoding, XmlDictionaryReaderQuotas, OnXmlDictionaryReaderClose)

Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs
Source:
XmlUTF8TextReader.cs

버퍼를 읽는 XML 텍스트 판독기 초기화 요구 사항을 지정합니다.

public:
 void SetInput(cli::array <System::Byte> ^ buffer, int offset, int count, System::Text::Encoding ^ encoding, System::Xml::XmlDictionaryReaderQuotas ^ quotas, System::Xml::OnXmlDictionaryReaderClose ^ onClose);
public void SetInput(byte[] buffer, int offset, int count, System.Text.Encoding? encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose? onClose);
public void SetInput(byte[] buffer, int offset, int count, System.Text.Encoding encoding, System.Xml.XmlDictionaryReaderQuotas quotas, System.Xml.OnXmlDictionaryReaderClose onClose);
abstract member SetInput : byte[] * int * int * System.Text.Encoding * System.Xml.XmlDictionaryReaderQuotas * System.Xml.OnXmlDictionaryReaderClose -> unit
Public Sub SetInput (buffer As Byte(), offset As Integer, count As Integer, encoding As Encoding, quotas As XmlDictionaryReaderQuotas, onClose As OnXmlDictionaryReaderClose)

매개 변수

buffer
Byte[]

읽을 버퍼입니다.

offset
Int32

에서 읽을 시작 위치입니다 buffer.

count
Int32

에서 buffer읽을 수 있는 바이트 수입니다.

encoding
Encoding

스트림의 문자 인코딩입니다.

quotas
XmlDictionaryReaderQuotas

적용할 값입니다 XmlDictionaryReaderQuotas .

onClose
OnXmlDictionaryReaderClose

판독기를 닫을 때 호출할 대리자입니다.

적용 대상