LINE.Datatypes.TalkService.Client.requestIdentityUnbind C# (CSharp) Method

requestIdentityUnbind() public method

public requestIdentityUnbind ( IdentityProvider provider, string identifier ) : void
provider IdentityProvider
identifier string
return void
      public void requestIdentityUnbind(IdentityProvider provider, string identifier)
      {
        #if !SILVERLIGHT
        send_requestIdentityUnbind(provider, identifier);
        recv_requestIdentityUnbind();

        #else
        var asyncResult = Begin_requestIdentityUnbind(null, null, provider, identifier);
        End_requestIdentityUnbind(asyncResult);

        #endif
      }
      #if SILVERLIGHT
TalkService.Client