File: System\Xml\IFragmentCapableXmlDictionaryWriter.cs
Web Access
Project: src\src\libraries\System.Private.DataContractSerialization\src\System.Private.DataContractSerialization.csproj (System.Private.DataContractSerialization)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
using System.IO;
 
namespace System.Xml
{
    public interface IFragmentCapableXmlDictionaryWriter
    {
        bool CanFragment { get; }
 
        void StartFragment(Stream stream, bool generateSelfContainedTextFragment);
 
        void EndFragment();
 
        void WriteFragment(byte[] buffer, int offset, int count);
    }
}