MsgPropertyCollection.Item Property
Namespace: Rebex.Mail
Assembly: Rebex.Msg.dll (version 7.0.9083)
Item[Int32]
Gets a property at the specified index.
Declaration
public MsgProperty this[int index] { get; }
Parameters
Type | Name | Description |
---|---|---|
Int32 | index | Index of the property to return. |
Property Value
Type | Description |
---|---|
MsgProperty |
Item[MsgPropertyTag]
Gets a property with specified Tag or null reference (Nothing in Visual Basic) if not found.
Declaration
public MsgProperty this[MsgPropertyTag tag] { get; }
Parameters
Type | Name | Description |
---|---|---|
MsgPropertyTag | tag | Tag of the property to return. |
Property Value
Type | Description |
---|---|
MsgProperty |
Item[MsgPropertyId]
Gets a property with specified LID or null reference (Nothing in Visual Basic) if not found.
Declaration
public MsgProperty this[MsgPropertyId id] { get; }
Parameters
Type | Name | Description |
---|---|---|
MsgPropertyId | id | LID of the property to return. |
Property Value
Type | Description |
---|---|
MsgProperty |
Item[String]
Gets a property with specified name or null reference (Nothing in Visual Basic) if not found.
Declaration
public MsgProperty this[string name] { get; }
Parameters
Type | Name | Description |
---|---|---|
String | name | Name of the property to return. |
Property Value
Type | Description |
---|---|
MsgProperty |