Added field for tape file block size.
This commit is contained in:
@@ -3656,6 +3656,8 @@ namespace Schemas {
|
||||
|
||||
private long sequenceField;
|
||||
|
||||
private long blockSizeField;
|
||||
|
||||
private long startBlockField;
|
||||
|
||||
private long endBlockField;
|
||||
@@ -3692,6 +3694,16 @@ namespace Schemas {
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
public long BlockSize {
|
||||
get {
|
||||
return this.blockSizeField;
|
||||
}
|
||||
set {
|
||||
this.blockSizeField = value;
|
||||
}
|
||||
}
|
||||
|
||||
/// <remarks/>
|
||||
public long StartBlock {
|
||||
get {
|
||||
|
||||
@@ -3659,6 +3659,8 @@ Namespace Schemas
|
||||
|
||||
Private sequenceField As Long
|
||||
|
||||
Private blockSizeField As Long
|
||||
|
||||
Private startBlockField As Long
|
||||
|
||||
Private endBlockField As Long
|
||||
@@ -3695,6 +3697,16 @@ Namespace Schemas
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
Public Property BlockSize() As Long
|
||||
Get
|
||||
Return Me.blockSizeField
|
||||
End Get
|
||||
Set
|
||||
Me.blockSizeField = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
'''<remarks/>
|
||||
Public Property StartBlock() As Long
|
||||
Get
|
||||
|
||||
Reference in New Issue
Block a user