ServiceNotificationFilterDescription Constructors

Definition

Overloads

ServiceNotificationFilterDescription()

Initializes a new instance of the ServiceNotificationFilterDescription class.

ServiceNotificationFilterDescription(Uri, Boolean, Boolean)

Initializes a new instance of the ServiceNotificationFilterDescription class.

ServiceNotificationFilterDescription()

Initializes a new instance of the ServiceNotificationFilterDescription class.

public ServiceNotificationFilterDescription ();
Public Sub New ()

Applies to

ServiceNotificationFilterDescription(Uri, Boolean, Boolean)

Initializes a new instance of the ServiceNotificationFilterDescription class.

public ServiceNotificationFilterDescription (Uri name, bool matchNamePrefix, bool matchPrimaryChangeOnly);
new System.Fabric.Description.ServiceNotificationFilterDescription : Uri * bool * bool -> System.Fabric.Description.ServiceNotificationFilterDescription
Public Sub New (name As Uri, matchNamePrefix As Boolean, matchPrimaryChangeOnly As Boolean)

Parameters

name
Uri

The name for which service notifications should be delivered.

matchNamePrefix
Boolean

Flag that indicates whether all service notifications for which Name is a prefix will be delivered.

matchPrimaryChangeOnly
Boolean

Flag that indicates whether to match the service notification delivery by filtering out notifications in which the primary replica endpoint has not changed. This flag has no effect for stateless services.

Applies to