EndRegisterDevice() 공개 메소드

public EndRegisterDevice ( System @__AsyncResult ) : void
@__AsyncResult System
리턴 void
예제 #1
0
 private void RegisterOnServer(String notificationUri)
 {
     var lService = new WindowsPhonePushProviderService_AsyncProxy(message, clientChannel);
     lService.BeginRegisterDevice(deviceId.ToString(), notificationUri,
                                  Environment.OSVersion.Version.ToString(), "WinPhoneClient",
                                  ar =>
                                  {
                                      try
                                      {
                                          lService.EndRegisterDevice(ar);
                                          Log("Channel URI sent to server\n");
                                      }
                                      catch (Exception ex)
                                      {
                                          Log("Exception during URI update on the server:\n{0}", ex.Message);
                                      }
                                  }, null);
 }