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
See Also