Gets or sets a value that determines the number of consecutive heartbeats from an agent that can be missed before generating an alert on the server. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As ManagementServer
Dim value As SettablePropertyValue(Of Integer)

value = instance.MissingHeartbeatThreshold

instance.MissingHeartbeatThreshold = value

Syntax

Visual Basic
Public Property MissingHeartbeatThreshold As SettablePropertyValue(Of Integer)
C#
public SettablePropertyValue<int> MissingHeartbeatThreshold { get; set; }
C++
public:
property SettablePropertyValue<int>^ MissingHeartbeatThreshold {
		SettablePropertyValue<int>^ get ();
		void set (SettablePropertyValue<int>^ value);
}
J#
/** @property */
public SettablePropertyValue<int> get_MissingHeartbeatThreshold ()

/** @property */
public void set_MissingHeartbeatThreshold (SettablePropertyValue<int> value)
JScript
public function get MissingHeartbeatThreshold () : SettablePropertyValue<int>

public function set MissingHeartbeatThreshold (value : SettablePropertyValue<int>)

Property Value

A Int32 value that indicates the number of consecutive agent heartbeats that can be missed before generating an alert on the server.

Remarks

A heartbeat is a periodic pulse from an agent to its Management Server.


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