ShoutLib.Shouter.Acknowledge C# (CSharp) Method

Acknowledge() private method

Removes a shout request message from the subscription.
private Acknowledge ( string ackId ) : void
ackId string The id of the message to remove.
return void
        private void Acknowledge(string ackId)
        {
            WriteLog("Deleting shout request message...", TraceEventType.Verbose);
            _init.PubsubService.Projects.Subscriptions.Acknowledge(new AcknowledgeRequest()
            {
                AckIds = new string[] { ackId }
            }, MakeSubscriptionPath(_init.SubscriptionName)).Execute();
        }