StaticIPOperationsExtensions.CheckAsync Method (IStaticIPOperations, String, String)
The Check Static IP operation retrieves the details for the availability of static IP addresses for the given virtual network.
Namespace: Microsoft.WindowsAzure.Management.Network
Assembly: Microsoft.WindowsAzure.Management.Network (in Microsoft.WindowsAzure.Management.Network.dll)
Syntax
public static Task<NetworkStaticIPAvailabilityResponse> CheckAsync(
this IStaticIPOperations operations,
string networkName,
string ipAddress
)
public:
[ExtensionAttribute]
static Task<NetworkStaticIPAvailabilityResponse^>^ CheckAsync(
IStaticIPOperations^ operations,
String^ networkName,
String^ ipAddress
)
static member CheckAsync :
operations:IStaticIPOperations *
networkName:string *
ipAddress:string -> Task<NetworkStaticIPAvailabilityResponse>
<ExtensionAttribute>
Public Shared Function CheckAsync (
operations As IStaticIPOperations,
networkName As String,
ipAddress As String
) As Task(Of NetworkStaticIPAvailabilityResponse)
Parameters
operations
Type: Microsoft.WindowsAzure.Management.Network.IStaticIPOperationsReference to the Microsoft.WindowsAzure.Management.Network.IStaticIPOperations.
networkName
Type: System.StringRequired. The name of the virtual network.
ipAddress
Type: System.StringRequired. The address of the static IP.
Return Value
Type: System.Threading.Tasks.Task<NetworkStaticIPAvailabilityResponse>
A response that indicates the availability of a static IP address, and if not, provides a list of suggestions.
See Also
StaticIPOperationsExtensions Class
Microsoft.WindowsAzure.Management.Network Namespace
Return to top