Initializes the SipNotificationEndpoint with the endpoint's name, protocol, server, and user URI. Namespace: Microsoft.EnterpriseManagement.Administration
Assembly: Microsoft.EnterpriseManagement.OperationsManager (in microsoft.enterprisemanagement.operationsmanager.dll)

Usage

Visual Basic
Dim name As String
Dim recipientProtocol As String
Dim primaryServer As SipServer
Dim userURI As Uri

Dim instance As New SipNotificationEndpoint(name, recipientProtocol, primaryServer, userURI)

Syntax

Visual Basic
Public Sub New ( _
		name As String, _
		recipientProtocol As String, _
		primaryServer As SipServer, _
		userURI As Uri _
)
C#
public SipNotificationEndpoint (
		string name,
		string recipientProtocol,
		SipServer primaryServer,
		Uri userURI
)
C++
public:
SipNotificationEndpoint (
		String^ name, 
		String^ recipientProtocol, 
		SipServer^ primaryServer, 
		Uri^ userURI
)
J#
public SipNotificationEndpoint (
		String name, 
		String recipientProtocol, 
		SipServer primaryServer, 
		Uri userURI
)
JScript
public function SipNotificationEndpoint (
		name : String, 
		recipientProtocol : String, 
		primaryServer : SipServer, 
		userURI : Uri
)

Parameters

name

A user-defined name for the endpoint.

recipientProtocol

The transport protocol used to deliver notifications to the user. For example, sip.

primaryServer

The SIP server that relays notifications to the user.

userURI

A uniform resource identifier (URI) that identifies the user to whom notifications are sent.

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