Changeset 404 for binary-improvements2/WebServer/src/WebUtils.cs
- Timestamp:
- Feb 16, 2023, 3:50:53 PM (21 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
binary-improvements2/WebServer/src/WebUtils.cs
r402 r404 1 1 using System; 2 using System.Collections.Specialized; 2 3 using System.Diagnostics.CodeAnalysis; 3 4 using System.Net; … … 110 111 WriteJsonData (_context.Response, ref _writer, _statusCode); 111 112 } 113 114 public static bool TryGetValue (this NameValueCollection _nameValueCollection, string _name, out string _result) { 115 _result = _nameValueCollection [_name]; 116 return _result != null; 117 } 112 118 } 113 119 }
Note:
See TracChangeset
for help on using the changeset viewer.