Microsoft.Azure.Commands.Network.ChildResourceHelp.GetResourceId C# (CSharp) Method

GetResourceId() public static method

public static GetResourceId ( string subscriptionId, string resourceGroupName, string virtualNetworkGatewayName, string resource, string resourceName ) : string
subscriptionId string
resourceGroupName string
virtualNetworkGatewayName string
resource string
resourceName string
return string
        public static string GetResourceId(
            string subscriptionId,
            string resourceGroupName,
            string virtualNetworkGatewayName,
            string resource,
            string resourceName)
        {
            return string.Format(
                Microsoft.Azure.Commands.Network.Properties.Resources.VirtualNetworkGatewayChildResourceId,
                subscriptionId,
                resourceGroupName,
                virtualNetworkGatewayName,
                resource,
                resourceName);
        }