Exemplo n.º 1
0
 public BuiltinIPList.Builder SetShortConnectIPList(int index, BuiltinIP.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.shortConnectIPList_[index] = builderForValue.Build();
     return(this);
 }
Exemplo n.º 2
0
 public BuiltinIPList.Builder AddShortConnectIPList(BuiltinIP.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.shortConnectIPList_.Add(builderForValue.Build());
     return(this);
 }