public override void Initialize(BinaryReader reader)
 {
     this.SnapshotFlags = (WindowsAPI.ToolHelp.SnapshotFlags)reader.ReadUInt32();
     this.ProcessID     = reader.ReadUInt32();
     this.initialized   = true;
 }
 public CreateToolHelp32SnapshotCommand(WindowsAPI.ToolHelp.SnapshotFlags snapshotFlags, uint pid)
 {
     this.SnapshotFlags = snapshotFlags;
     this.ProcessID     = pid;
     this.initialized   = true;
 }