Gets or sets the list of management servers that are used as a failover list to determine the agents a rule will apply to. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As AgentAssignment
Dim value As ReadOnlyCollection(Of ManagementServer)

value = instance.FailoverList

instance.FailoverList = value

Syntax

Visual Basic
Public Property FailoverList As ReadOnlyCollection(Of ManagementServer)
C#
public ReadOnlyCollection<ManagementServer> FailoverList { get; set; }
C++
public:
property ReadOnlyCollection<ManagementServer^>^ FailoverList {
		ReadOnlyCollection<ManagementServer^>^ get ();
		void set (ReadOnlyCollection<ManagementServer^>^ value);
}
J#
/** @property */
public ReadOnlyCollection<ManagementServer> get_FailoverList ()

/** @property */
public void set_FailoverList (ReadOnlyCollection<ManagementServer> value)
JScript
public function get FailoverList () : ReadOnlyCollection<ManagementServer>

public function set FailoverList (value : ReadOnlyCollection<ManagementServer>)

Property Value

Returns a collection of ManagementServer objects.

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