System.ServiceModel.XmlBuffer
class XmlBuffer
namespace System.ServiceModel
{
internal class XmlBuffer
{
public int BufferSize { get; }
public int SectionCount { get; }
public XmlBuffer(int maxBufferSize);
public XmlDictionaryWriter OpenSection(XmlDictionaryReaderQuotas quotas);
public void CloseSection();
public void Close();
public XmlDictionaryReader GetReader(int sectionIndex);
public void WriteTo(int sectionIndex, XmlWriter writer);
}
}