Gets or sets a value that indicates the number of seconds between heartbeats generated by the health service. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

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

value = instance.HeartbeatInterval

instance.HeartbeatInterval = value

Syntax

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

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

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

Property Value

A SettablePropertyValue whose integer Value member indicates the number of seconds between heartbeats sent by the health service.

Remarks

The health service only sends heartbeats if they are enabled.

After changing this value, call the ApplyChanges method to update the Operations Manager database.


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