Ignore:
Timestamp:
Feb 16, 2023, 3:50:53 PM (21 months ago)
Author:
alloc
Message:

Latest state including reworking to the permissions system

File:
1 edited

Legend:

Unmodified
Added
Removed
  • binary-improvements2/WebServer/src/WebUtils.cs

    r402 r404  
    11using System;
     2using System.Collections.Specialized;
    23using System.Diagnostics.CodeAnalysis;
    34using System.Net;
     
    110111                        WriteJsonData (_context.Response, ref _writer, _statusCode);
    111112                }
     113
     114                public static bool TryGetValue (this NameValueCollection _nameValueCollection, string _name, out string _result) {
     115                        _result = _nameValueCollection [_name];
     116                        return _result != null;
     117                }
    112118        }
    113119}
Note: See TracChangeset for help on using the changeset viewer.