Ejemplo n.º 1
0
 public CmdList.Builder SetList(int index, CmdItem value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_[index] = value;
     return(this);
 }
Ejemplo n.º 2
0
 public NewInitResponse.Builder SetCmdList(int index, CmdItem value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.cmdList_[index] = value;
     return(this);
 }
Ejemplo n.º 3
0
 public CmdList.Builder AddList(CmdItem value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.list_.Add(value);
     return(this);
 }
Ejemplo n.º 4
0
 public NewInitResponse.Builder AddCmdList(CmdItem value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.cmdList_.Add(value);
     return(this);
 }