Reflection
WRQUseBlockReads Property


Returns or specifies whether VAXLINK2, the VMS host transfer program, is forced to read files in block mode rather than record mode.
Syntax
'Declaration
 
Property WRQUseBlockReads As Boolean
'Usage
 
Dim instance As IFileTransfer
Dim value As Boolean
 
instance.WRQUseBlockReads = value
 
value = instance.WRQUseBlockReads
bool WRQUseBlockReads {get; set;}

Property Value

The default value is false.
Remarks
For certain files in non-standard formats, this transfers every byte in the file without regard to record lengths or carriage controls. Setting this property to True is equivalent to using TransferTypeOption.Image as the TransferType (with WRQReceiveFile), but omitting the image header information. This property is only relevant for transfers from VMS hosts (that is, when WRQHostSystem is set to HostSystemTypeOption.VMS). This property is relevant only for transfers that use the WRQ/Reflection protocol. The default value is false.
See Also