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

authenticateToSharedNote() public method

public authenticateToSharedNote ( string guid, string noteKey ) : Evernote.EDAM.UserStore.AuthenticationResult
guid string
noteKey string
return Evernote.EDAM.UserStore.AuthenticationResult
      public Evernote.EDAM.UserStore.AuthenticationResult authenticateToSharedNote(string guid, string noteKey)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_authenticateToSharedNote(guid, noteKey);
        return recv_authenticateToSharedNote();

        #else
        var asyncResult = Begin_authenticateToSharedNote(null, null, guid, noteKey);
        return End_authenticateToSharedNote(asyncResult);

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