InfoConnect for Unisys
HostRecordSeparator Property


Returns or specifies the character to be used in the PC file as a record separator when an ASCII files is transferred from the host.
Syntax
'Declaration
 
Property HostRecordSeparator As String
'Usage
 
Dim instance As IFileTransfer
Dim value As String
 
instance.HostRecordSeparator = value
 
value = instance.HostRecordSeparator
string HostRecordSeparator {get; set;}
Remarks
This property is only relevant when the UseHostRecordSeparator property is True. For example, this statement specifies that a linefeed should be inserted as the PC file record separator: FileTransfer.HostRecordSeparator = "\n" This property only applies to ASCII file transfers using the WRQ/Reflection protocol. The default value is a carriage return and linefeed, which is represented as: "\r\n" The string cannot be more than 259 characters long.
See Also