ApplicationGatewayOperationsExtensions.BeginAddCertificateAsync Method (IApplicationGatewayOperations, String, String, ApplicationGatewayCertificate)
The Begin Add certificate operation adds the ssl certificate to the application gateway (see https://msdn.microsoft.com/en-us/library/windowsazure/jj154114.aspx for more information)
Namespace: Microsoft.WindowsAzure.Management.Network
Assembly: Microsoft.WindowsAzure.Management.Network (in Microsoft.WindowsAzure.Management.Network.dll)
Syntax
public static Task<GatewayOperationResponse> BeginAddCertificateAsync(
this IApplicationGatewayOperations operations,
string gatewayName,
string certificateName,
ApplicationGatewayCertificate certificate
)
public:
[ExtensionAttribute]
static Task<GatewayOperationResponse^>^ BeginAddCertificateAsync(
IApplicationGatewayOperations^ operations,
String^ gatewayName,
String^ certificateName,
ApplicationGatewayCertificate^ certificate
)
static member BeginAddCertificateAsync :
operations:IApplicationGatewayOperations *
gatewayName:string *
certificateName:string *
certificate:ApplicationGatewayCertificate -> Task<GatewayOperationResponse>
<ExtensionAttribute>
Public Shared Function BeginAddCertificateAsync (
operations As IApplicationGatewayOperations,
gatewayName As String,
certificateName As String,
certificate As ApplicationGatewayCertificate
) As Task(Of GatewayOperationResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Network.IApplicationGatewayOperationsReference to the Microsoft.WindowsAzure.Management.Network.IApplicationGatewayOperations.
gatewayName
Type: System.StringRequired. Gateway name
certificateName
Type: System.StringRequired. Certificate name
certificate
Type: Microsoft.WindowsAzure.Management.Network.Models.ApplicationGatewayCertificateRequired. The application gateway ssl certificate
Return Value
Type: System.Threading.Tasks.Task<GatewayOperationResponse>
A standard service response including an HTTP status code and request ID.
See Also
ApplicationGatewayOperationsExtensions Class
Microsoft.WindowsAzure.Management.Network Namespace
Return to top