SyncMemoryStream Constructors

Definition

Overloads

SyncMemoryStream()
SyncMemoryStream(Byte[])
SyncMemoryStream(Byte[], Int32)
SyncMemoryStream(Byte[], Int32, Int32)

SyncMemoryStream()

public SyncMemoryStream ();
Public Sub New ()

Applies to

SyncMemoryStream(Byte[])

public SyncMemoryStream (byte[] buffer);
new Microsoft.WindowsAzure.Storage.Core.SyncMemoryStream : byte[] -> Microsoft.WindowsAzure.Storage.Core.SyncMemoryStream
Public Sub New (buffer As Byte())

Parameters

buffer
Byte[]

Applies to

SyncMemoryStream(Byte[], Int32)

public SyncMemoryStream (byte[] buffer, int index);
new Microsoft.WindowsAzure.Storage.Core.SyncMemoryStream : byte[] * int -> Microsoft.WindowsAzure.Storage.Core.SyncMemoryStream
Public Sub New (buffer As Byte(), index As Integer)

Parameters

buffer
Byte[]
index
Int32

Applies to

SyncMemoryStream(Byte[], Int32, Int32)

public SyncMemoryStream (byte[] buffer, int index, int count);
new Microsoft.WindowsAzure.Storage.Core.SyncMemoryStream : byte[] * int * int -> Microsoft.WindowsAzure.Storage.Core.SyncMemoryStream
Public Sub New (buffer As Byte(), index As Integer, count As Integer)

Parameters

buffer
Byte[]
index
Int32
count
Int32

Applies to