ShoutLib.Shouter.Acknowledge C# (CSharp) 메소드

Acknowledge() 개인적인 메소드

Removes a shout request message from the subscription.
private Acknowledge ( string ackId ) : void
ackId string The id of the message to remove.
리턴 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();
        }