Class SendingCassieMessageEventArgs
Contains all the information after sending a C.A.S.S.I.E. message.
public class SendingCassieMessageEventArgs : IDeniableEvent, IExiledEvent
- Inheritance
-
SendingCassieMessageEventArgs
- Implements
- Inherited Members
- Extension Methods
Constructors
SendingCassieMessageEventArgs(string, bool, bool, bool)
Initializes a new instance of the SendingCassieMessageEventArgs class.
public SendingCassieMessageEventArgs(string words, bool makeHold, bool makeNoise, bool isAllowed = true)
Parameters
words
stringmakeHold
boolmakeNoise
boolisAllowed
boolIndicates whether the event can be executed.
Properties
IsAllowed
Gets or sets a value indicating whether the message can be sent.
public bool IsAllowed { get; set; }
Property Value
MakeHold
Gets or sets a value indicating whether the message should be held.
public bool MakeHold { get; set; }
Property Value
MakeNoise
Gets or sets a value indicating whether the message should make noise.
public bool MakeNoise { get; set; }
Property Value
Words
Gets or sets the message.
public string Words { get; set; }