The SMTP servers to which notifications can be sent if delivery to the primary SMTP server fails. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As SmtpNotificationEndpoint
Dim value As IList(Of SmtpServer)

value = instance.SecondaryServers

Syntax

Visual Basic
Public ReadOnly Property SecondaryServers As IList(Of SmtpServer)
C#
public IList<SmtpServer> SecondaryServers { get; }
C++
public:
property IList<SmtpServer^>^ SecondaryServers {
		IList<SmtpServer^>^ get ();
}
J#
/** @property */
public IList<SmtpServer> get_SecondaryServers ()
JScript
public function get SecondaryServers () : IList<SmtpServer>

Property Value

A IList of type SmtpServer that contains the SMTP servers to which notifications can be sent if delivery to the primary SMTP server fails.

Remarks

When an attempt to send a notification to the primary SMTP server fails (that is, the time defined in the PrimaryServerSwitchBackIntervalSeconds property expires), Operations Manager automatically attempts to send the notification to the first secondary server in the list. If that server fails, the software attempts the next secondary server, and so on.


Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Platforms

Development Platforms

Windows Server 2008, Windows Vista, Windows Server 2003, and Windows XP

Target Platforms

Windows Server 2008,Windows Server 2003,Windows Vista,Windows XP

See Also