Beispiel #1
0
 public ChatRoomMemberData.Builder SetChatRoomMember(int index, ChatRoomMemberInfo value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.chatRoomMember_[index] = value;
     return(this);
 }
Beispiel #2
0
 public ChatRoomMemberData.Builder AddChatRoomMember(ChatRoomMemberInfo value)
 {
     ThrowHelper.ThrowIfNull(value, "value");
     this.PrepareBuilder();
     this.result.chatRoomMember_.Add(value);
     return(this);
 }