Class StringExtensions
Common functions we'll want to use on Strings. Fiddler makes extensive use of strings which should be interpreted in a case-insensitive manner.
WARNING: Methods assume that the calling object is not null, which is lame for reliability but arguably good for performance.
Inheritance
Inherited Members
Namespace: Fiddler
Assembly: FiddlerCore.dll
Syntax
public static class StringExtensions
Methods
OICContains(String, String)
Declaration
public static bool OICContains(this string inStr, string toMatch)
Parameters
System.String
inStr
|
System.String
toMatch
|
Returns
System.Boolean
|
OICEndsWith(String, String)
Declaration
public static bool OICEndsWith(this string inStr, string toMatch)
Parameters
System.String
inStr
|
System.String
toMatch
|
Returns
System.Boolean
|
OICEndsWithAny(String, String[])
Declaration
public static bool OICEndsWithAny(this string inStr, params string[] toMatch)
Parameters
System.String
inStr
|
System.String[]
toMatch
|
Returns
System.Boolean
|
OICEquals(String, String)
Declaration
public static bool OICEquals(this string inStr, string toMatch)
Parameters
System.String
inStr
|
System.String
toMatch
|
Returns
System.Boolean
|
OICStartsWith(String, String)
Declaration
public static bool OICStartsWith(this string inStr, string toMatch)
Parameters
System.String
inStr
|
System.String
toMatch
|
Returns
System.Boolean
|
OICStartsWithAny(String, String[])
Declaration
public static bool OICStartsWithAny(this string inStr, params string[] toMatch)
Parameters
System.String
inStr
|
System.String[]
toMatch
|
Returns
System.Boolean
|