PathString.StartsWithSegments Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
StartsWithSegments(PathString) |
Checks if this instance starts with or exactly matches the other instance. Only full segments are matched. |
StartsWithSegments(PathString, PathString) |
Checks if this instance starts with or exactly matches the other instance. Only full segments are matched. |
StartsWithSegments(PathString)
- Source:
- PathString.cs
Checks if this instance starts with or exactly matches the other instance. Only full segments are matched.
public bool StartsWithSegments (Microsoft.Owin.PathString other);
member this.StartsWithSegments : Microsoft.Owin.PathString -> bool
Public Function StartsWithSegments (other As PathString) As Boolean
Parameters
- other
- PathString
Returns
Applies to
StartsWithSegments(PathString, PathString)
- Source:
- PathString.cs
Checks if this instance starts with or exactly matches the other instance. Only full segments are matched.
public bool StartsWithSegments (Microsoft.Owin.PathString other, out Microsoft.Owin.PathString remaining);
member this.StartsWithSegments : Microsoft.Owin.PathString * PathString -> bool
Public Function StartsWithSegments (other As PathString, ByRef remaining As PathString) As Boolean
Parameters
- other
- PathString
- remaining
- PathString
Any remaining segments from this instance not included in the other instance.