mirror of
				https://github.com/jellyfin/jellyfin.git
				synced 2025-11-03 19:17:24 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			32 lines
		
	
	
		
			1023 B
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			32 lines
		
	
	
		
			1023 B
		
	
	
	
		
			C#
		
	
	
	
	
	
using System.Text.Json;
 | 
						|
using System.Text.Json.Serialization;
 | 
						|
using MediaBrowser.Common.Json.Converters;
 | 
						|
 | 
						|
namespace MediaBrowser.Common.Json
 | 
						|
{
 | 
						|
    /// <summary>
 | 
						|
    /// Helper class for having compatible JSON throughout the codebase.
 | 
						|
    /// </summary>
 | 
						|
    public static class JsonDefaults
 | 
						|
    {
 | 
						|
        /// <summary>
 | 
						|
        /// Gets the default <see cref="JsonSerializerOptions" /> options.
 | 
						|
        /// </summary>
 | 
						|
        /// <returns>The default <see cref="JsonSerializerOptions" /> options.</returns>
 | 
						|
        public static JsonSerializerOptions GetOptions()
 | 
						|
        {
 | 
						|
            var options = new JsonSerializerOptions()
 | 
						|
            {
 | 
						|
                ReadCommentHandling = JsonCommentHandling.Disallow,
 | 
						|
                WriteIndented = false
 | 
						|
            };
 | 
						|
 | 
						|
            options.Converters.Add(new JsonGuidConverter());
 | 
						|
            options.Converters.Add(new JsonStringEnumConverter());
 | 
						|
            options.Converters.Add(new JsonNonStringKeyDictionaryConverterFactory());
 | 
						|
 | 
						|
            return options;
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 |