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

getAds() public method

public getAds ( string authenticationToken, AdParameters adParameters ) : List
authenticationToken string
adParameters AdParameters
return List
      public List<Evernote.EDAM.Type.Ad> getAds(string authenticationToken, AdParameters adParameters)
      {
        #if !SILVERLIGHT && !NETFX_CORE
        send_getAds(authenticationToken, adParameters);
        return recv_getAds();

        #else
        var asyncResult = Begin_getAds(null, null, authenticationToken, adParameters);
        return End_getAds(asyncResult);

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