From 81f9571072a7978fe8b65dd9645d30e351138acd Mon Sep 17 00:00:00 2001 From: crupest Date: Mon, 12 Dec 2022 20:30:55 +0800 Subject: Develop secret api. v31 --- .../CrupestApi/CrupestApi.Commons/Json.cs | 28 ---------------------- 1 file changed, 28 deletions(-) (limited to 'docker/crupest-api/CrupestApi/CrupestApi.Commons/Json.cs') diff --git a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Json.cs b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Json.cs index 8c4b34d..60b18e4 100644 --- a/docker/crupest-api/CrupestApi/CrupestApi.Commons/Json.cs +++ b/docker/crupest-api/CrupestApi/CrupestApi.Commons/Json.cs @@ -5,34 +5,6 @@ namespace CrupestApi.Commons; public static class CrupestApiJsonExtensions { - public static object? CheckJsonValueNotArrayOrObject(this JsonElement value) - { - if (value.ValueKind == JsonValueKind.Null && value.ValueKind == JsonValueKind.Undefined) - { - return null; - } - else if (value.ValueKind == JsonValueKind.True) - { - return true; - } - else if (value.ValueKind == JsonValueKind.False) - { - return false; - } - else if (value.ValueKind == JsonValueKind.Number) - { - return value.GetDouble(); - } - else if (value.ValueKind == JsonValueKind.String) - { - return value.GetString(); - } - else - { - throw new Exception("Only value not array or object is allowed."); - } - } - public static IServiceCollection AddJsonOptions(this IServiceCollection services) { services.AddOptions(); -- cgit v1.2.3