Пример #1
0
 internal static ConfiguredCall AndSkipsAheadAsync(this ConfiguredCall call, int length)
 {
     return(call.AndDoes(async x => await x.Arg <PipeBencodeReader>().SkipBytesAsync(length)));
 }
Пример #2
0
 internal static ConfiguredCall AndSkipsAhead(this ConfiguredCall call, int length)
 {
     return(call.AndDoes(x => x.Arg <BencodeReader>().SkipBytes(length)));
 }