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

getPublicNotebook() public method

public getPublicNotebook ( int userId, string publicUri ) : Evernote.EDAM.Type.Notebook
userId int
publicUri string
return Evernote.EDAM.Type.Notebook
      public Evernote.EDAM.Type.Notebook getPublicNotebook(int userId, string publicUri)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getPublicNotebook(userId, publicUri);
        return recv_getPublicNotebook();

        #else
        var asyncResult = Begin_getPublicNotebook(null, null, userId, publicUri);
        return End_getPublicNotebook(asyncResult);

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