17 lines
577 B
C#
17 lines
577 B
C#
|
//------------------------------------------------------------
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
//------------------------------------------------------------
|
||
|
|
||
|
namespace System.Runtime.Serialization.Json
|
||
|
{
|
||
|
using System.IO;
|
||
|
using System.Text;
|
||
|
using System.Runtime.CompilerServices;
|
||
|
|
||
|
[TypeForwardedFrom("System.ServiceModel.Web, Version=3.5.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35")]
|
||
|
public interface IXmlJsonWriterInitializer
|
||
|
{
|
||
|
void SetOutput(Stream stream, Encoding encoding, bool ownsStream);
|
||
|
}
|
||
|
}
|