WebSiteOperationsExtensions.GetRepositoryAsync Method (IWebSiteOperations, String, String)
A web site repository is essentially a Git repository that you can use to manage your web site content. By using Git source control tools, you can push or pull version-controlled changes to your site. This API executes a repository get operation. (see https://msdn.microsoft.com/en-us/library/windowsazure/dn166967.aspx for more information)
Namespace: Microsoft.WindowsAzure
Assembly: Microsoft.WindowsAzure.Management.WebSites (in Microsoft.WindowsAzure.Management.WebSites.dll)
Syntax
public static Task<WebSiteGetRepositoryResponse> GetRepositoryAsync(
this IWebSiteOperations operations,
string webSpaceName,
string webSiteName
)
public:
[ExtensionAttribute]
static Task<WebSiteGetRepositoryResponse^>^ GetRepositoryAsync(
IWebSiteOperations^ operations,
String^ webSpaceName,
String^ webSiteName
)
static member GetRepositoryAsync :
operations:IWebSiteOperations *
webSpaceName:string *
webSiteName:string -> Task<WebSiteGetRepositoryResponse>
<ExtensionAttribute>
Public Shared Function GetRepositoryAsync (
operations As IWebSiteOperations,
webSpaceName As String,
webSiteName As String
) As Task(Of WebSiteGetRepositoryResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperationsReference to the Microsoft.WindowsAzure.Management.WebSites.IWebSiteOperations.
webSpaceName
Type: System.StringRequired. The name of the web space.
webSiteName
Type: System.StringRequired. The name of the web site.
Return Value
Type: System.Threading.Tasks.Task<WebSiteGetRepositoryResponse>
The Get Repository Web Site operation response.
See Also
WebSiteOperationsExtensions Class
Microsoft.WindowsAzure Namespace
Return to top