Class MessageRecipient
The MessageRecipient class is used to store the details of all recipients of a particular message.
Implements
Inherited Members
Namespace: DotNetNuke.Services.Social.Messaging
Assembly: DotNetNuke.dll
Syntax
public class MessageRecipient : BaseEntityInfo, IHydratable
Properties
| Improve this Doc View SourceArchived
Gets or sets a value indicating whether is Message archived. True: Yes, False: No.
Declaration
public bool Archived { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
KeyID
Gets or sets iHydratable.KeyID.
Declaration
public int KeyID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
MessageID
Gets or sets the messageID of who sent the message to this recipient.
Declaration
public int MessageID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Read
Gets or sets a value indicating whether is Message read. True: Yes, False: No.
Declaration
public bool Read { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
RecipientID
Gets or sets recipientID - The primary key.
Declaration
public int RecipientID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
UserID
Gets or sets the UserID of the user receiving the message.
Declaration
public int UserID { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 |
Methods
| Improve this Doc View SourceFill(IDataReader)
Fill the object with data from database.
Declaration
public void Fill(IDataReader dr)
Parameters
Type | Name | Description |
---|---|---|
IDataReader | dr | the data reader. |