WRQFrameTerminator Property
Returns or specifies which character comes at the end of a file transfer packet. This character causes a host read operation to complete.
'Declaration
Property WRQFrameTerminator As String
'Usage
Dim instance As IFileTransfer
Dim value As String
instance.WRQFrameTerminator = value
value = instance.WRQFrameTerminator
string WRQFrameTerminator {get; set;}
Property Value
The default value is a carriage return, represented in Basic as Chr$(13) or C# as "\r" The value can be any control character with an ASCII value of less than 32—that is, Chr$(0) through Chr$(31)—or the open parenthesis character. It is recommended that you not set this property to Chr$(0), Chr$(2), Chr$(17), Chr$(19), or Chr$(25).