Server.SystemMessages Property
Represents a collection of SystemMessage objects. Each SystemMessage object represents a system message defined on the instance of Microsoft SQL Server.
Spazio dei nomi: Microsoft.SqlServer.Management.Smo
Assembly : Microsoft.SqlServer.Smo (in microsoft.sqlserver.smo.dll)
Sintassi
'Dichiarazione
Public ReadOnly Property SystemMessages As SystemMessageCollection
public SystemMessageCollection SystemMessages { get; }
public:
property SystemMessageCollection^ SystemMessages {
SystemMessageCollection^ get ();
}
/** @property */
public SystemMessageCollection get_SystemMessages ()
public function get SystemMessages () : SystemMessageCollection
Valore proprietà
A SystemMessageCollection object that represents all the system messages defined on the instance of SQL Server.
Osservazioni
Testo aggiornato:
The SystemMessages property points to the SystemMessageCollection object, which references the system messages on the instance of SQL Server. You can use the collection to reference the predefined system messages. Use the UserDefinedMessages property to access user-defined messages.
Questo spazio dei nomi, classe o membro è supportato solo nella versione 2.0 di Microsoft .NET Framework.
Esempio
'Connect to the local, default instance of SQL Server.
Dim srv As Server
srv = New Server
'Reference an existing system message using the ItemByIdAndLanguage method.
Dim msg As SystemMessage
msg = srv.SystemMessages.ItemByIdAndLanguage(14126, "us_english")
'Display the message ID and text.
Console.WriteLine(msg.ID.ToString + " " + msg.Text)
Thread Safety
Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Piattaforme
Piattaforme di sviluppo
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Piattaforme di destinazione
Per un elenco delle piattaforme supportate, vedere Requisiti hardware e software per l'Installazione di SQL Server 2005.
Vedere anche
Riferimento
Server Class
Server Members
Microsoft.SqlServer.Management.Smo Namespace
Altre risorse
How to: Find a Particular System Message in Visual Basic .NET
How to: Reference an Object by Using a Collection in Visual Basic .NET
Using Collections
Setting Properties
Gestione dei server