[Modify] Edit it

This commit is contained in:
sta 2017-10-16 15:45:15 +09:00
parent 4c9f443bea
commit e536d858b0

View File

@ -641,14 +641,26 @@ namespace WebSocketSharp
}
/// <summary>
/// Gets or sets the SSL configuration used to authenticate the server and
/// optionally the client for secure connection.
/// Gets the configuration for secure connection.
/// </summary>
/// <remarks>
/// This configuration will be referenced when a secure
/// connection is established, so you must configure it
/// before calling any connect method.
/// </remarks>
/// <value>
/// A <see cref="ClientSslConfiguration"/> that represents the configuration used
/// to authenticate the server and optionally the client for secure connection,
/// or <see langword="null"/> if the <see cref="WebSocket"/> is used in a server.
/// A <see cref="ClientSslConfiguration"/> that represents
/// the configuration used to authenticate the server and
/// optionally the client for secure connection.
/// </value>
/// <exception cref="InvalidOperationException">
/// <para>
/// This instance is not a client.
/// </para>
/// <para>
/// This instance does not use a secure connection.
/// </para>
/// </exception>
public ClientSslConfiguration SslConfiguration {
get {
if (!_client) {