Show / Hide Table of Contents

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 Source

User(String)

Create a user

Declaration
public User(string nick)
Parameters
Type Name Description
System.String nick

Nick of user

| Improve this Doc View Source

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 Source

Nick

User's nick

Declaration
public string Nick { get; set; }
Property Value
Type Description
System.String
| Improve this Doc View Source

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 Source

PropertyChanged

Event for nick changes

Declaration
public event PropertyChangedEventHandler PropertyChanged
Event Type
Type Description
System.ComponentModel.PropertyChangedEventHandler

Implements

System.ComponentModel.INotifyPropertyChanged
  • Improve this Doc
  • View Source
Back to top Generated by DocFX