Execute() public method

public Execute ( Action responseCallback, Action exceptionCallback ) : void
responseCallback Action
exceptionCallback Action
return void
 public void Multiple()
 {
     var service = new GetTagsService
                       {
                           RequestBuilder = ServerRequestBuilder.Instance
                       };
     service.Execute(Callback, ExceptionHandler.Handle);
 }
        public void Tags()
        {
            var service = new GetTagsService
                              {
                                  RequestBuilder = RequestBuilderHelper.Build()
                              };
            var helper = new AsyncTestHelper<GetTagsResponse>();
            service.Execute(helper.Callback, helper.HandleException);
            helper.Wait();

            foreach (var tag in helper.Response.Tags)
            {
                Debug.WriteLine(tag);
            }
        }