Exemplo n.º 1
0
 private bool ContainsQueryString(DownstreamPath dsPath)
 {
     return(dsPath.Value.Contains("?"));
 }
Exemplo n.º 2
0
 private string GetQueryString(DownstreamPath dsPath)
 {
     return(dsPath.Value.Substring(dsPath.Value.IndexOf("?")));
 }
Exemplo n.º 3
0
 private string GetQueryString(DownstreamPath dsPath)
 {
     return(dsPath.Value.Substring(dsPath.Value.IndexOf("?", StringComparison.Ordinal)));
 }
Exemplo n.º 4
0
 private string GetPath(DownstreamPath dsPath)
 {
     return(dsPath.Value.Substring(0, dsPath.Value.IndexOf("?")));
 }