示例#1
0
 public bool SeekToCondition(uint bookMark, bool useForwardDirection, QueryFilter seekFilter, SeekToConditionFlags flags)
 {
     this.CheckDisposed(null);
     throw new NotSupportedException("SeekToCondition");
 }
示例#2
0
 public bool SeekToCondition(uint bookMark, bool useForwardDirection, QueryFilter seekFilter, SeekToConditionFlags flags)
 {
     this.CheckDisposed(null);
     Util.ThrowOnNullArgument(seekFilter, "seekFilter");
     EnumValidator.ThrowIfInvalid <SeekToConditionFlags>(flags, "flags");
     throw new NotSupportedException();
 }
示例#3
0
 public bool SeekToCondition(SeekReference reference, QueryFilter seekFilter, SeekToConditionFlags flags)
 {
     this.CheckDisposed(null);
     throw new NotSupportedException("SeekToCondition");
 }
示例#4
0
 public bool SeekToCondition(SeekReference reference, QueryFilter seekFilter, SeekToConditionFlags flags)
 {
     this.CheckDisposed(null);
     EnumValidator.ThrowIfInvalid <SeekReference>(reference, "reference");
     throw new NotSupportedException();
 }