Storage Client Library for Windows Phone (Version 7.0)

Microsoft Windows Azure Storage Blob

CloudFileShare.EndExists Method (IAsyncResult) (Microsoft.WindowsAzure.Storage.File)

Returns the asynchronous result of the request to check whether the share exists.

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

Syntax

 
public virtual bool EndExists(
	IAsyncResult asyncResult
)
 
public:
virtual bool EndExists(
	IAsyncResult^ asyncResult
)
 
abstract EndExists : 
        asyncResult:IAsyncResult -> bool
override EndExists : 
        asyncResult:IAsyncResult -> bool
 
Public Overridable Function EndExists (
	asyncResult As IAsyncResult
) As Boolean

Parameters

asyncResult
Type: System.IAsyncResultSystem::IAsyncResult^System.IAsyncResultSystem.IAsyncResult

An IAsyncResult that references the pending asynchronous operation.

Return Value

Type: System.BooleanSystem::BooleanSystem.BooleanSystem.Boolean

true if the share exists.

Return to top