Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

The following additions only exist in the .net client api version 5.1.1 Patch 3
Code Block
string fileName = ....;
string appName = ....;
FormsService formsService = ....;
 
MediaFileSource source = new MediaFileSource(fileName, 
ApplicationFeed.MEDIA_SOURCE_TYPE);
 
ApplicationQuery query = formsService.CreateApplicationQuery(null);
ApplicationFeed apps = formsService.Query(query);
ApplicationEntry app = apps.CreateEntry();
app.MediaSource = source;
app = apps.Insert(app);
Note

 

How do I rename an application?

...