ApplicationGatewayOperationsExtensions.GetCertificateAsync Method (IApplicationGatewayOperations, String, String)
The Get Application Gateway certificate operation retrieves the ssl certificate provisioned for the given gateway. (see https://msdn.microsoft.com/en-us/library/windowsazure/jj157196.aspx for more information)
Namespace: Microsoft.WindowsAzure.Management.Network
Assembly: Microsoft.WindowsAzure.Management.Network (in Microsoft.WindowsAzure.Management.Network.dll)
Syntax
public static Task<ApplicationGatewayGetCertificate> GetCertificateAsync(
this IApplicationGatewayOperations operations,
string gatewayName,
string certificateName
)
public:
[ExtensionAttribute]
static Task<ApplicationGatewayGetCertificate^>^ GetCertificateAsync(
IApplicationGatewayOperations^ operations,
String^ gatewayName,
String^ certificateName
)
static member GetCertificateAsync :
operations:IApplicationGatewayOperations *
gatewayName:string *
certificateName:string -> Task<ApplicationGatewayGetCertificate>
<ExtensionAttribute>
Public Shared Function GetCertificateAsync (
operations As IApplicationGatewayOperations,
gatewayName As String,
certificateName As String
) As Task(Of ApplicationGatewayGetCertificate)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Network.IApplicationGatewayOperationsReference to the Microsoft.WindowsAzure.Management.Network.IApplicationGatewayOperations.
gatewayName
Type: System.StringRequired. The name of the gateway.
certificateName
Type: System.StringRequired. The name of the certificate.
Return Value
Type: System.Threading.Tasks.Task<ApplicationGatewayGetCertificate>
Response of GetApplicationGatewayCertificate request.
See Also
ApplicationGatewayOperationsExtensions Class
Microsoft.WindowsAzure.Management.Network Namespace
Return to top