The maximum number of primary recipients to whom a notification can be sent. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim instance As SmtpNotificationEndpoint
Dim value As Nullable(Of Integer)

value = instance.MaxPrimaryRecipientsPerMail

instance.MaxPrimaryRecipientsPerMail = value

Syntax

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

/** @property */
public void set_MaxPrimaryRecipientsPerMail (Nullable<int> value)
JScript
public function get MaxPrimaryRecipientsPerMail () : Nullable<int>

public function set MaxPrimaryRecipientsPerMail (value : Nullable<int>)

Property Value

An Int32 value that defines the maximum number of primary recipients per notification. The default value is 1.

Remarks

This limit does not affect the number of secondary recipients to whom notifications can be sent (for example, by sending a notification to an alias for a distribution list or by forwarding notifications from a primary recipient).


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