Modifying video libraries

To modify a video library, you must perform the following:

  1. Get the video library.

    Get an instance of the video library that you want to modify.

  2. Modify the instance of the video library.

    Set the properties of the instance to the new values.

  3. Save the video library.

    Save the changes that have been made to the video library.

The example below shows you how to modify a video library by its ID.

Modifying a video library by its ID

The following code modifies a video library by its ID.

Native API

private void ModifyVideoLibraryNativeAPI(Guid videoLibraryId, string newTitle)
{
    LibrariesManager librariesManager = LibrariesManager.GetManager();
 
    //Get the library.
    VideoLibrary library = librariesManager.GetVideoLibraries().Where(b => b.Id == videoLibraryId).FirstOrDefault();
 
    if (library != null)
    {
 
        //Modify the library.
        library.Title = newTitle;
        library.LastModified = DateTime.UtcNow;
        library.Urls.Clear();
        library.UrlName = Regex.Replace(newTitle.ToLower(), @"[^\w\-\!\$\'\(\)\=\@\d_]+", "-");
 
        //Save the changes.
        librariesManager.SaveChanges();
    }
}

First, you get an instance of the LibrariesManager class. Then, you get the video library with the the specified ID. You update the values of the properties of the video library. In this example you modify the title of the video library and its URL. Finally, you call SaveChanges to persist the changes.

Fluent API

private void ModifyVideoLibraryFluentAPI(Guid videoLibraryId, string newTitle)
{
    var count = 0;
 
    App.WorkWith().VideoLibraries().Where(b => b.Id == videoLibraryId).Count(out count);
 
    if (count > 0)
    {
        App.WorkWith().VideoLibrary(videoLibraryId).Do(library =>
        {
            library.Title = newTitle;
            library.LastModified = DateTime.UtcNow;
            library.Urls.Clear();
            library.UrlName = Regex.Replace(newTitle.ToLower(), @"[^\w\-\!\$\'\(\)\=\@\d_]+", "-");
        }).SaveChanges();
    }
}

First, you check whether a video library with the specified ID exists. Then, you get the singular facade of the video library with the specifiedID. To modify the video library, you call the Do method of the facade. In this example you update the title of the video library and its URL. Finally, to save the changes, you call the SaveChanges method of the facade.

See Also

Related topics:

Feedback

How useful is this article?

Tell us more

Submit
Your message was successfully sent.

We appreciate your feedback.

Your message could not be sent.

OK