diff --git a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs
index b14a5fa..62e6891 100644
--- a/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs
+++ b/Asterisk.2013/Asterisk.NET/Manager/ManagerConnection.cs
@@ -860,6 +860,13 @@ namespace AsterNET.Manager
///
/// Socket Encoding - default ASCII
///
+ ///
+ /// Attention!
+ ///
+ /// 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.
+ ///
+ ///
public Encoding SocketEncoding
{
get { return socketEncoding; }
@@ -869,6 +876,13 @@ namespace AsterNET.Manager
///
/// Socket Receive Buffer Size
///
+ ///
+ /// Attention!
+ ///
+ /// 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.
+ ///
+ ///
public int SocketReceiveBufferSize { get; set;}
#endregion