示例#1
0
        /// <summary>
        /// Returns true if UserIdList instances are equal
        /// </summary>
        /// <param name="other">Instance of UserIdList to be compared</param>
        /// <returns>Boolean</returns>
        public bool Equals(UserIdList other)
        {
            // credit: http://stackoverflow.com/a/10454552/677735
            if (other == null)
            {
                return(false);
            }

            return(false);
        }
 /// <summary>
 /// Initializes a new instance of the <see cref="ConversationSpecificStreamAttributes" /> class.
 /// </summary>
 /// <param name="Members">User IDs of the participants of the stream..</param>
 public ConversationSpecificStreamAttributes(UserIdList Members = null)
 {
     this.Members = Members;
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="ConversationSpecificStreamAttributes" /> class.
 /// </summary>
 /// <param name="Members">User IDs of the participants of the stream..</param>
 public ConversationSpecificStreamAttributes(UserIdList Members = default(UserIdList))
 {
     this.Members = Members;
 }