Changeset 487 for TFP-WebServer/WebServer/src/WebAPI/OpenApiHelpers.cs
- Timestamp:
- Jun 17, 2024, 5:25:43 PM (5 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
TFP-WebServer/WebServer/src/WebAPI/OpenApiHelpers.cs
r466 r487 105 105 } 106 106 107 private static readonly Regex pathMatcher = new Regex ( "^\\s{1,2}(/\\S+):.*$", RegexOptions.Compiled | RegexOptions.CultureInvariant);107 private static readonly Regex pathMatcher = new Regex (@"^\s{1,2}(/\S+):.*$", RegexOptions.Compiled | RegexOptions.CultureInvariant); 108 108 private Dictionary<string, string> findExportedPaths (string _spec, string _replaceBasePath = null) { 109 109 Dictionary<string, string> result = new Dictionary<string, string> (); … … 161 161 break; 162 162 case '\\': 163 _targetSb.Append ( "\\\\");163 _targetSb.Append (@"\\"); 164 164 break; 165 165 case '\b':
Note:
See TracChangeset
for help on using the changeset viewer.