Class User
Represents an IRC user. Implements INotifyPropertyChanged
Inheritance
System.Object
User
Implements
System.ComponentModel.INotifyPropertyChanged
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: GravyIrc
Assembly: GravyIrc.dll
Syntax
public class User : INotifyPropertyChanged
Constructors
| Improve this Doc View SourceUser(String)
Create a user
Declaration
public User(string nick)
Parameters
Type | Name | Description |
---|---|---|
System.String | nick | Nick of user |
User(String, String)
Create a user
Declaration
public User(string nick, string realName)
Parameters
Type | Name | Description |
---|---|---|
System.String | nick | Nick of user |
System.String | realName | Real name of user |
Properties
| Improve this Doc View SourceNick
User's nick
Declaration
public string Nick { get; set; }
Property Value
Type | Description |
---|---|
System.String |
RealName
Real name of user
Declaration
public string RealName { get; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Very rarely actually the person's real name
Events
| Improve this Doc View SourcePropertyChanged
Event for nick changes
Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type | Description |
---|---|
System.ComponentModel.PropertyChangedEventHandler |
Implements
System.ComponentModel.INotifyPropertyChanged