DeleteLinkedService() public method

public DeleteLinkedService ( string resourceGroupName, string dataFactoryName, string linkedServiceName ) : HttpStatusCode
resourceGroupName string
dataFactoryName string
linkedServiceName string
return HttpStatusCode
        private void ExecuteDelete()
        {
            HttpStatusCode response = DataFactoryClient.DeleteLinkedService(ResourceGroupName, DataFactoryName, Name);

            if (response == HttpStatusCode.NoContent)
            {
                WriteWarning(string.Format(
                                 CultureInfo.InvariantCulture, Resources.LinkedServiceNotFound, Name, DataFactoryName));
            }
        }