BusinessComponents.OperationsComponent.DeleteContactList C# (CSharp) Method

DeleteContactList() public static method

Method used for deleting an existing contact list
public static DeleteContactList ( CredentialsDetails credentialsDetail, string listId, string &strRequest, string &strResponse ) : void
credentialsDetail BusinessObjects.CredentialsDetails An object that encapsulates the Constant Contact credentials
listId string The id of the list to be deleted
strRequest string The request string representation
strResponse string The response string representation
return void
        public static void DeleteContactList(CredentialsDetails credentialsDetail, string listId, out string strRequest,
            out string strResponse)
        {
            ApiCallComponent.CallServiceDelete(credentialsDetail, listId, out strRequest, out strResponse);
        }