InfoConnect for Unisys
PCRecordSeparator Property


Returns or specifies the character that is interpreted as a record separator in a PC ASCII file when it is transferred to the host.
Syntax
'Declaration
 
Property PCRecordSeparator As String
'Usage
 
Dim instance As IFileTransfer
Dim value As String
 
instance.PCRecordSeparator = value
 
value = instance.PCRecordSeparator
string PCRecordSeparator {get; set;}
Remarks
This property is only relevant when the UsePCRecordSeparator property is True. For example, this statement specifies that a LF in the PC file should be interpreted as the record separator: FileTransfer.PCRecordSeparator = "\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