|
|
|
@ -1317,18 +1317,18 @@ namespace WebSocketSharp
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// <summary>
|
|
|
|
/// Determines whether the specified <see cref="string"/> is enclosed in the specified
|
|
|
|
/// Determines whether the specified <see cref="string"/> is
|
|
|
|
/// <see cref="char"/>.
|
|
|
|
/// enclosed in the specified <see cref="char"/>.
|
|
|
|
/// </summary>
|
|
|
|
/// </summary>
|
|
|
|
/// <returns>
|
|
|
|
/// <returns>
|
|
|
|
/// <c>true</c> if <paramref name="value"/> is enclosed in <paramref name="c"/>;
|
|
|
|
/// <c>true</c> if <paramref name="value"/> is enclosed in
|
|
|
|
/// otherwise, <c>false</c>.
|
|
|
|
/// <paramref name="c"/>; otherwise, <c>false</c>.
|
|
|
|
/// </returns>
|
|
|
|
/// </returns>
|
|
|
|
/// <param name="value">
|
|
|
|
/// <param name="value">
|
|
|
|
/// A <see cref="string"/> to test.
|
|
|
|
/// A <see cref="string"/> to test.
|
|
|
|
/// </param>
|
|
|
|
/// </param>
|
|
|
|
/// <param name="c">
|
|
|
|
/// <param name="c">
|
|
|
|
/// A <see cref="char"/> that represents the character to find.
|
|
|
|
/// A <see cref="char"/> to find.
|
|
|
|
/// </param>
|
|
|
|
/// </param>
|
|
|
|
public static bool IsEnclosedIn (this string value, char c)
|
|
|
|
public static bool IsEnclosedIn (this string value, char c)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|