aboutsummaryrefslogtreecommitdiff
path: root/Jellyfin.Server/SocketSharp/RequestMono.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2019-02-13 17:03:50 +0100
committerBond-009 <bond.009@outlook.com>2019-02-16 00:43:56 +0100
commit183ef34422656468a9e145f37ed4be7a70823194 (patch)
tree55abce0da0660463cc2317bbaef0f7a69588f29c /Jellyfin.Server/SocketSharp/RequestMono.cs
parent637936cb9f2734df8e7c4c5838430bf5069901e6 (diff)
Do not declare visible instance fields
Diffstat (limited to 'Jellyfin.Server/SocketSharp/RequestMono.cs')
-rw-r--r--Jellyfin.Server/SocketSharp/RequestMono.cs8
1 files changed, 6 insertions, 2 deletions
diff --git a/Jellyfin.Server/SocketSharp/RequestMono.cs b/Jellyfin.Server/SocketSharp/RequestMono.cs
index af8fe9616..4bb2e8e19 100644
--- a/Jellyfin.Server/SocketSharp/RequestMono.cs
+++ b/Jellyfin.Server/SocketSharp/RequestMono.cs
@@ -127,8 +127,12 @@ namespace Jellyfin.Server.SocketSharp
public string Authorization => string.IsNullOrEmpty(request.Headers["Authorization"]) ? null : request.Headers["Authorization"];
- protected bool validate_cookies, validate_query_string, validate_form;
- protected bool checked_cookies, checked_query_string, checked_form;
+ protected bool validate_cookies { get; set; }
+ protected bool validate_query_string { get; set; }
+ protected bool validate_form { get; set; }
+ protected bool checked_cookies { get; set; }
+ protected bool checked_query_string { get; set; }
+ protected bool checked_form { get; set; }
private static void ThrowValidationException(string name, string key, string value)
{