Exemplo n.º 1
0
 public ChatRoomMemberData.Builder SetChatRoomMember(int index, ChatRoomMemberInfo.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.chatRoomMember_[index] = builderForValue.Build();
     return(this);
 }
Exemplo n.º 2
0
 public ChatRoomMemberData.Builder AddChatRoomMember(ChatRoomMemberInfo.Builder builderForValue)
 {
     ThrowHelper.ThrowIfNull(builderForValue, "builderForValue");
     this.PrepareBuilder();
     this.result.chatRoomMember_.Add(builderForValue.Build());
     return(this);
 }