|  | @@ -10,7 +10,7 @@ namespace Renci.SshNet.Messages.Connection
 | 
											
												
													
														|  |          /// <summary>
 |  |          /// <summary>
 | 
											
												
													
														|  |          /// Channel request name
 |  |          /// Channel request name
 | 
											
												
													
														|  |          /// </summary>
 |  |          /// </summary>
 | 
											
												
													
														|  | -        public const string NAME = "break";
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public const string Name = "break";
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |          /// <summary>
 |  |          /// <summary>
 | 
											
												
													
														|  |          /// Gets the name of the request.
 |  |          /// Gets the name of the request.
 | 
											
										
											
												
													
														|  | @@ -20,13 +20,13 @@ namespace Renci.SshNet.Messages.Connection
 | 
											
												
													
														|  |          /// </value>
 |  |          /// </value>
 | 
											
												
													
														|  |          public override string RequestName
 |  |          public override string RequestName
 | 
											
												
													
														|  |          {
 |  |          {
 | 
											
												
													
														|  | -            get { return NAME; }
 |  | 
 | 
											
												
													
														|  | 
 |  | +            get { return Name; }
 | 
											
												
													
														|  |          }
 |  |          }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |          /// <summary>
 |  |          /// <summary>
 | 
											
												
													
														|  |          /// Gets break length in milliseconds.
 |  |          /// Gets break length in milliseconds.
 | 
											
												
													
														|  |          /// </summary>
 |  |          /// </summary>
 | 
											
												
													
														|  | -        public UInt32 BreakLength { get; private set; }
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public uint BreakLength { get; private set; }
 | 
											
												
													
														|  |  
 |  |  
 | 
											
												
													
														|  |          /// <summary>
 |  |          /// <summary>
 | 
											
												
													
														|  |          /// Gets the size of the message in bytes.
 |  |          /// Gets the size of the message in bytes.
 | 
											
										
											
												
													
														|  | @@ -56,7 +56,7 @@ namespace Renci.SshNet.Messages.Connection
 | 
											
												
													
														|  |          /// Initializes a new instance of the <see cref="ExecRequestInfo"/> class.
 |  |          /// Initializes a new instance of the <see cref="ExecRequestInfo"/> class.
 | 
											
												
													
														|  |          /// </summary>
 |  |          /// </summary>
 | 
											
												
													
														|  |          /// <param name="breakLength">Length of the break.</param>
 |  |          /// <param name="breakLength">Length of the break.</param>
 | 
											
												
													
														|  | -        public BreakRequestInfo(UInt32 breakLength)
 |  | 
 | 
											
												
													
														|  | 
 |  | +        public BreakRequestInfo(uint breakLength)
 | 
											
												
													
														|  |              : this()
 |  |              : this()
 | 
											
												
													
														|  |          {
 |  |          {
 | 
											
												
													
														|  |              BreakLength = breakLength;
 |  |              BreakLength = breakLength;
 |