Example #1
0
 public static void Read(this IAccessChannel channel, IAccessItemRegistration reg)
 {
     channel.Read(reg.ToEnumerable());
 }
Example #2
0
 public static void Read(this IAccessChannel channel, IEnumerable <IAccessItemRegistration> regs)
 {
     channel.Read(regs.Select(x => x.ServerAlias));
 }
Example #3
0
 public static void Read(this IAccessChannel channel,
                         uint serverAlias)
 {
     channel.Read(serverAlias.ToEnumerable());
 }