Reflection
KermitWindowSize Property


If the remote Kermit program supports sliding windows, this property determines the size of a sliding window, in packets.
Syntax
'Declaration
 
Property KermitWindowSize As Integer
'Usage
 
Dim instance As IFileTransfer
Dim value As Integer
 
instance.KermitWindowSize = value
 
value = instance.KermitWindowSize
int KermitWindowSize {get; set;}
Exceptions
ExceptionDescription
System.ArgumentOutOfRangeException Thrown if a value outside the range of valid values is specified.
Remarks
This value is 0-based, so the default value (1) actually configures Reflection for a two-packet sliding window under Kermit. Kermit programs that support sliding windows are often designated "SuperKermit" programs. The default value is 1. The range of possible values is 0-31.
See Also