CloudFileClient.GetShareReference Method

Windows Runtime Azure Storage Client Library

Returns a reference to a CloudFileShare object with the specified name.

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

Usage

Visual Basic
Dim instance As CloudFileClient
Dim shareName As String
Dim returnValue As CloudFileShare

returnValue = instance.GetShareReference(shareName)

Syntax

Visual Basic
Public Function GetShareReference ( _
	shareName As String _
) As CloudFileShare
C#
public CloudFileShare GetShareReference (
	string shareName
)
C++
public:
CloudFileShare^ GetShareReference (
	String^ shareName
)
J#
public CloudFileShare GetShareReference (
	String shareName
)
JScript
public function GetShareReference (
	shareName : String
) : CloudFileShare

Parameters

shareName

A string containing the name of the share.

Return Value

A reference to a share.

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.

Platforms

Development Platforms

Windows Vista, Windows 7, Windows Server 2008, Windows 8.1, Windows Server 2012 R2, Windows 8 and Windows Server 2012

Target Platforms

See Also