MessageTypeCollection.Item Property (Int32)
Gets a MessageType object in the collection by index number.
Namespace: Microsoft.SqlServer.Management.Smo.Broker
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
index As Integer _
) As MessageType
Get
'Usage
Dim instance As MessageTypeCollection
Dim index As Integer
Dim value As MessageType
value = instance(index)
public MessageType this[
int index
] { get; }
public:
property MessageType^ default[int index] {
MessageType^ get (int index);
}
member Item : MessageType
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- index
Type: System.Int32
An Int32 value that specifies the position of the MessageType object in the MessageTypeCollection collection.
Property Value
Type: Microsoft.SqlServer.Management.Smo.Broker.MessageType
A MessageType object value that represents the message type.
See Also