internal void __MarshalFrom(ref __Native @ref)
 {
     AllowList = new InfoQueueFilterDescription();
     AllowList.__MarshalFrom(ref @ref.AllowList);
     DenyList = new InfoQueueFilterDescription();
     DenyList.__MarshalFrom(ref @ref.DenyList);
 }
 public InfoQueueFilter(InfoQueueFilterDescription allowList, InfoQueueFilterDescription denyList)
 {
     AllowList = allowList;
     DenyList  = denyList;
 }
 public InfoQueueFilter(InfoQueueFilterDescription allowList)
 {
     AllowList = allowList;
 }