Example #1
0
 public GmailList.Builder SetList(int index, GmailInfo.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.list_[index] = builderForValue.Build();
     return(this);
 }
Example #2
0
 public GmailList.Builder AddList(GmailInfo.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.list_.Add(builderForValue.Build());
     return(this);
 }