DataAccess.SearchSettings.Update C# (CSharp) Method

Update() public method

public Update ( List excludeVideos, bool allowDownloading ) : SearchSettings
excludeVideos List
allowDownloading bool
return SearchSettings
        public SearchSettings Update(List<Guid> excludeVideos, bool allowDownloading) {
            this.ExcludeVideos = excludeVideos;
            this.AllowDownloading = allowDownloading;
            return this;
        }
    }