Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

Represents a stream for writing to a blob.

Namespace:   Microsoft.WindowsAzure.Storage.Blob
Assembly:  Microsoft.WindowsAzure.Storage (in Microsoft.WindowsAzure.Storage.dll)

Inheritance Hierarchy

System.::..Object
  System.IO.::..Stream
    Microsoft.WindowsAzure.Storage.Blob.::..CloudBlobStream

Syntax

 
public abstract class CloudBlobStream : Stream
 
public ref class CloudBlobStream abstract : Stream
 
[<AbstractClass>]
type CloudBlobStream = 
    class
        inherit Stream
    end
 
Public MustInherit Class CloudBlobStream
	Inherits Stream

Constructors

Methods

NameDescription
System_CAPS_pubmethodBeginCommit(AsyncCallback, Object)(AsyncCallback^, Object^)(AsyncCallback, Object)(AsyncCallback, Object)

Begins an asynchronous commit operation.

System_CAPS_pubmethodBeginFlush(AsyncCallback, Object)(AsyncCallback^, Object^)(AsyncCallback, Object)(AsyncCallback, Object)

Begins an asynchronous flush operation.

System_CAPS_pubmethodBeginRead(Byte[], Int32, Int32, AsyncCallback, Object)(array<Byte>^, Int32, Int32, AsyncCallback^, Object^)(Byte[], Int32, Int32, AsyncCallback, Object)(Byte(), Int32, Int32, AsyncCallback, Object)

(Inherited from Stream.)

System_CAPS_pubmethodBeginWrite(Byte[], Int32, Int32, AsyncCallback, Object)(array<Byte>^, Int32, Int32, AsyncCallback^, Object^)(Byte[], Int32, Int32, AsyncCallback, Object)(Byte(), Int32, Int32, AsyncCallback, Object)

(Inherited from Stream.)

System_CAPS_pubmethodClose()()()()

(Inherited from Stream.)

System_CAPS_pubmethodCopyTo(Stream)(Stream^)(Stream)(Stream)

(Inherited from Stream.)

System_CAPS_pubmethodCopyTo(Stream, Int32)(Stream^, Int32)(Stream, Int32)(Stream, Int32)

(Inherited from Stream.)

System_CAPS_pubmethodCopyToAsync(Stream)(Stream^)(Stream)(Stream)

(Inherited from Stream.)

System_CAPS_pubmethodCopyToAsync(Stream, Int32)(Stream^, Int32)(Stream, Int32)(Stream, Int32)

(Inherited from Stream.)

System_CAPS_pubmethodCopyToAsync(Stream, Int32, CancellationToken)(Stream^, Int32, CancellationToken)(Stream, Int32, CancellationToken)(Stream, Int32, CancellationToken)

(Inherited from Stream.)

System_CAPS_pubmethodDispose()()()()

(Inherited from Stream.)

System_CAPS_protmethodDispose(Boolean)(Boolean)(Boolean)(Boolean)

(Inherited from Stream.)

System_CAPS_pubmethodEndCommit(IAsyncResult)(IAsyncResult^)(IAsyncResult)(IAsyncResult)

Waits for the pending asynchronous commit to complete.

System_CAPS_pubmethodEndFlush(IAsyncResult)(IAsyncResult^)(IAsyncResult)(IAsyncResult)

Waits for the pending asynchronous flush to complete.

System_CAPS_pubmethodEndRead(IAsyncResult)(IAsyncResult^)(IAsyncResult)(IAsyncResult)

(Inherited from Stream.)

System_CAPS_pubmethodEndWrite(IAsyncResult)(IAsyncResult^)(IAsyncResult)(IAsyncResult)

(Inherited from Stream.)

System_CAPS_pubmethodEquals(Object)(Object^)(Object)(Object)

(Inherited from Object.)

System_CAPS_protmethodFinalize()()()()

(Inherited from Object.)

System_CAPS_pubmethodFlush()()()()

(Inherited from Stream.)

System_CAPS_pubmethodFlushAsync()()()()

(Inherited from Stream.)

System_CAPS_pubmethodFlushAsync(CancellationToken)(CancellationToken)(CancellationToken)(CancellationToken)

(Inherited from Stream.)

System_CAPS_pubmethodGetHashCode()()()()

(Inherited from Object.)

System_CAPS_pubmethodGetType()()()()

(Inherited from Object.)

System_CAPS_protmethodMemberwiseClone()()()()

(Inherited from Object.)

System_CAPS_pubmethodRead(Byte[], Int32, Int32)(array<Byte>^, Int32, Int32)(Byte[], Int32, Int32)(Byte(), Int32, Int32)

(Inherited from Stream.)

System_CAPS_pubmethodReadAsync(Byte[], Int32, Int32)(array<Byte>^, Int32, Int32)(Byte[], Int32, Int32)(Byte(), Int32, Int32)

(Inherited from Stream.)

System_CAPS_pubmethodReadAsync(Byte[], Int32, Int32, CancellationToken)(array<Byte>^, Int32, Int32, CancellationToken)(Byte[], Int32, Int32, CancellationToken)(Byte(), Int32, Int32, CancellationToken)

(Inherited from Stream.)

System_CAPS_pubmethodReadByte()()()()

(Inherited from Stream.)

System_CAPS_pubmethodSeek(Int64, SeekOrigin)(Int64, SeekOrigin)(Int64, SeekOrigin)(Int64, SeekOrigin)

(Inherited from Stream.)

System_CAPS_pubmethodSetLength(Int64)(Int64)(Int64)(Int64)

(Inherited from Stream.)

System_CAPS_pubmethodToString()()()()

(Inherited from Object.)

System_CAPS_pubmethodWrite(Byte[], Int32, Int32)(array<Byte>^, Int32, Int32)(Byte[], Int32, Int32)(Byte(), Int32, Int32)

(Inherited from Stream.)

System_CAPS_pubmethodWriteAsync(Byte[], Int32, Int32)(array<Byte>^, Int32, Int32)(Byte[], Int32, Int32)(Byte(), Int32, Int32)

(Inherited from Stream.)

System_CAPS_pubmethodWriteAsync(Byte[], Int32, Int32, CancellationToken)(array<Byte>^, Int32, Int32, CancellationToken)(Byte[], Int32, Int32, CancellationToken)(Byte(), Int32, Int32, CancellationToken)

(Inherited from Stream.)

System_CAPS_pubmethodWriteByte(Byte)(Byte)(Byte)(Byte)

(Inherited from Stream.)

Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Return to top