18 lines
344 B
C#
18 lines
344 B
C#
|
// <copyright>
|
||
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||
|
// </copyright>
|
||
|
|
||
|
namespace System.Xml
|
||
|
{
|
||
|
class XmlWriteBase64AsyncArguments
|
||
|
{
|
||
|
internal byte[] Buffer { get; set; }
|
||
|
|
||
|
internal int Index { get; set; }
|
||
|
|
||
|
internal int Count { get; set; }
|
||
|
|
||
|
internal int Offset { get; set; }
|
||
|
}
|
||
|
}
|