DatabaseOperationOperationsExtensions.GetAsync Method (IDatabaseOperationOperations, String, String)
Returns information about a specific operation by using the operation Guid.
Namespace: Microsoft.WindowsAzure.Management.Sql
Assembly: Microsoft.WindowsAzure.Management.Sql (in Microsoft.WindowsAzure.Management.Sql.dll)
Syntax
public static Task<DatabaseOperationGetResponse> GetAsync(
this IDatabaseOperationOperations operations,
string serverName,
string operationGuid
)
public:
[ExtensionAttribute]
static Task<DatabaseOperationGetResponse^>^ GetAsync(
IDatabaseOperationOperations^ operations,
String^ serverName,
String^ operationGuid
)
static member GetAsync :
operations:IDatabaseOperationOperations *
serverName:string *
operationGuid:string -> Task<DatabaseOperationGetResponse>
<ExtensionAttribute>
Public Shared Function GetAsync (
operations As IDatabaseOperationOperations,
serverName As String,
operationGuid As String
) As Task(Of DatabaseOperationGetResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Sql.IDatabaseOperationOperationsReference to the Microsoft.WindowsAzure.Management.Sql.IDatabaseOperationOperations.
serverName
Type: System.StringRequired. The name of the Azure SQL Database Server where the database is hosted.
operationGuid
Type: System.StringRequired. The Guid of the Azure SQL Database operation to be obtained.
Return Value
Type: System.Threading.Tasks.Task<DatabaseOperationGetResponse>
Represents the database operation for a given operation Guid.
See Also
DatabaseOperationOperationsExtensions Class
Microsoft.WindowsAzure.Management.Sql Namespace
Return to top