[Modify] Edit it
This commit is contained in:
parent
c70ec7f96d
commit
f5ebe3730d
@ -908,22 +908,25 @@ namespace WebSocketSharp
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Tries to create a <see cref="Uri"/> for WebSocket with
|
/// Tries to create a new <see cref="Uri"/> for WebSocket with
|
||||||
/// the specified <paramref name="uriString"/>.
|
/// the specified <paramref name="uriString"/>.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
/// <returns>
|
/// <returns>
|
||||||
/// <c>true</c> if a <see cref="Uri"/> is successfully created; otherwise, <c>false</c>.
|
/// <c>true</c> if the <see cref="Uri"/> was successfully created;
|
||||||
|
/// otherwise, <c>false</c>.
|
||||||
/// </returns>
|
/// </returns>
|
||||||
/// <param name="uriString">
|
/// <param name="uriString">
|
||||||
/// A <see cref="string"/> that represents a WebSocket URL to try.
|
/// A <see cref="string"/> that represents a WebSocket URL to try.
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <param name="result">
|
/// <param name="result">
|
||||||
/// When this method returns, a <see cref="Uri"/> that represents a WebSocket URL,
|
/// When this method returns, a <see cref="Uri"/> that
|
||||||
/// or <see langword="null"/> if <paramref name="uriString"/> is invalid.
|
/// represents the WebSocket URL or <see langword="null"/>
|
||||||
|
/// if <paramref name="uriString"/> is invalid.
|
||||||
/// </param>
|
/// </param>
|
||||||
/// <param name="message">
|
/// <param name="message">
|
||||||
/// When this method returns, a <see cref="string"/> that represents an error message,
|
/// When this method returns, a <see cref="string"/> that
|
||||||
/// or <see cref="String.Empty"/> if <paramref name="uriString"/> is valid.
|
/// represents an error message or <see langword="null"/>
|
||||||
|
/// if <paramref name="uriString"/> is valid.
|
||||||
/// </param>
|
/// </param>
|
||||||
internal static bool TryCreateWebSocketUri (
|
internal static bool TryCreateWebSocketUri (
|
||||||
this string uriString, out Uri result, out string message
|
this string uriString, out Uri result, out string message
|
||||||
|
Loading…
Reference in New Issue
Block a user