示例#1
0
 public static ZlpSimpleFileAccessProtectorInformation SetUse(
     this ZlpSimpleFileAccessProtectorInformation @this,
     bool use)
 {
     @this.Use = use;
     return(@this);
 }
示例#2
0
 public static ZlpSimpleFileAccessProtectorInformation SetHandleException(
     this ZlpSimpleFileAccessProtectorInformation @this,
     ZlpHandleExceptionDelegate handleException)
 {
     @this.HandleException = handleException;
     return(@this);
 }
示例#3
0
 public static ZlpSimpleFileAccessProtectorInformation DoGarbageCollectBeforeSleep(
     this ZlpSimpleFileAccessProtectorInformation @this,
     bool doGarbageCollectBeforeSleep)
 {
     @this.DoGarbageCollectBeforeSleep = doGarbageCollectBeforeSleep;
     return(@this);
 }
示例#4
0
 public static ZlpSimpleFileAccessProtectorInformation SetSleepDelaySeconds(
     this ZlpSimpleFileAccessProtectorInformation @this,
     int sleepDelaySeconds)
 {
     @this.SleepDelaySeconds = sleepDelaySeconds;
     return(@this);
 }
示例#5
0
 public static ZlpSimpleFileAccessProtectorInformation SetRetryCount(
     this ZlpSimpleFileAccessProtectorInformation @this,
     int retryCount)
 {
     @this.RetryCount = retryCount;
     return(@this);
 }
示例#6
0
 public static ZlpSimpleFileAccessProtectorInformation SetInfo(
     this ZlpSimpleFileAccessProtectorInformation @this,
     string info)
 {
     @this.Info = info;
     return(@this);
 }