Exemple #1
0
        public static IAsyncResult BeginDeleteSubscription(string topicPath, string name, TokenProvider tokenProvider, AsyncCallback callback, object state)
        {
            var result = new DeleteEntityAsyncResult(topicPath + "/Subscriptions/" + name, tokenProvider);

            result.BeginInvoke(callback, state);

            return(result);
        }
Exemple #2
0
        public IAsyncResult BeginRemoveRule(string name, AsyncCallback callback, object state)
        {
            var result = new DeleteEntityAsyncResult(this.topicPath + "/Subscriptions/" + this.name + "/Rules/" + name, this.TokenProvider);

            result.BeginInvoke(callback, state);

            return(result);
        }
Exemple #3
0
        public static IAsyncResult BeginDeleteQueue(string path, TokenProvider tokenProvider, AsyncCallback callback, object state)
        {
            var result = new DeleteEntityAsyncResult(path, tokenProvider);

            result.BeginInvoke(callback, state);

            return(result);
        }