Evernote.EDAM.NoteStore.NoteStore.Client.authenticateToSharedNotebook C# (CSharp) Method

authenticateToSharedNotebook() public method

public authenticateToSharedNotebook ( string shareKey, string authenticationToken ) : Evernote.EDAM.UserStore.AuthenticationResult
shareKey string
authenticationToken string
return Evernote.EDAM.UserStore.AuthenticationResult
      public Evernote.EDAM.UserStore.AuthenticationResult authenticateToSharedNotebook(string shareKey, string authenticationToken)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_authenticateToSharedNotebook(shareKey, authenticationToken);
        return recv_authenticateToSharedNotebook();

        #else
        var asyncResult = Begin_authenticateToSharedNotebook(null, null, shareKey, authenticationToken);
        return End_authenticateToSharedNotebook(asyncResult);

        #endif
      }
      #if SILVERLIGHT || NETFX_CORE
NoteStore.Client