Ejemplo n.º 1
0
 public SendMsgRequest.Builder SetList(int index, MicroMsgRequest.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.list_[index] = builderForValue.Build();
     return(this);
 }
Ejemplo n.º 2
0
 public SendMsgRequest.Builder AddList(MicroMsgRequest.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.list_.Add(builderForValue.Build());
     return(this);
 }