示例#1
0
 public static int TryGetAllInfo(MalockClient malock, int timeout, out IEnumerable <HandleInfo> s)
 {
     if (malock == null)
     {
         throw new ArgumentNullException("malock");
     }
     return(malock.TryGetAllInfo(timeout, out s));
 }
示例#2
0
 public static bool TryGetAllInfo(MalockClient malock, int timeout, out IEnumerable <HandleInfo> s, ref Exception exception)
 {
     if (malock == null)
     {
         throw new ArgumentNullException("handle");
     }
     return(malock.TryGetAllInfo(timeout, out s, ref exception));
 }