Added xml-comment to SocketEncoding and SocketReceiveBufferSize property
This commit is contained in:
parent
0f260a753c
commit
ccd319d3d0
|
@ -860,6 +860,13 @@ namespace AsterNET.Manager
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Socket Encoding - default ASCII
|
/// Socket Encoding - default ASCII
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Attention!
|
||||||
|
/// <para>
|
||||||
|
/// The value of this property must be set before establishing a connection with the Asterisk.
|
||||||
|
/// Changing the property doesn't do anything while you are already connected.
|
||||||
|
/// </para>
|
||||||
|
/// </remarks>
|
||||||
public Encoding SocketEncoding
|
public Encoding SocketEncoding
|
||||||
{
|
{
|
||||||
get { return socketEncoding; }
|
get { return socketEncoding; }
|
||||||
|
@ -869,6 +876,13 @@ namespace AsterNET.Manager
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Socket Receive Buffer Size
|
/// Socket Receive Buffer Size
|
||||||
/// </summary>
|
/// </summary>
|
||||||
|
/// <remarks>
|
||||||
|
/// Attention!
|
||||||
|
/// <para>
|
||||||
|
/// The value of this property must be set before establishing a connection with the Asterisk.
|
||||||
|
/// Changing the property doesn't do anything while you are already connected.
|
||||||
|
/// </para>
|
||||||
|
/// </remarks>
|
||||||
public int SocketReceiveBufferSize { get; set;}
|
public int SocketReceiveBufferSize { get; set;}
|
||||||
|
|
||||||
#endregion
|
#endregion
|
||||||
|
|
Loading…
Reference in a new issue