/// <summary>
 /// Exports info about the asset manager as a string
 /// </summary>
 /// <returns>String version of the asset manager</returns>
 public override string ToString()
 {
     return(new StringBuilder().AppendLine()
            .AppendLineFormat("Filters: {0}", Filters.ToString(x => x.Name))
            .AppendLineFormat("Translators: {0}", Translators.ToString(x => x.Name))
            .AppendLineFormat("Content Filters: {0}", ContentFilters.ToString(x => x.Name))
            .ToString());
 }
 public IStreamIngestorFactoryDescriptor WithContentFilterFactory(ContentFilters.IContentFilterFactory contentFilterFactory)
 {
     _contentFilterFactory = contentFilterFactory;
     return this;
 }