MessageTypeCollection.Item Property (String)
Gets a MessageType object in the collection by name.
Namespace: Microsoft.SqlServer.Management.Smo.Broker
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Syntax
'Declaration
Public ReadOnly Default Property Item ( _
name As String _
) As MessageType
Get
'Usage
Dim instance As MessageTypeCollection
Dim name As String
Dim value As MessageType
value = instance(name)
public MessageType this[
string name
] { get; }
public:
property MessageType^ default[String^ name] {
MessageType^ get (String^ name);
}
member Item : MessageType
JScript supports the use of indexed properties, but not the declaration of new ones.
Parameters
- name
Type: System.String
A String value that specifies the name 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