BrokeredServiceAudience Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The intended audience for a brokered service registered via BrokeredServiceConfiguration.
This enumeration supports a bitwise combination of its member values.
[System.Flags]
public enum BrokeredServiceAudience
[<System.Flags>]
type BrokeredServiceAudience =
Public Enum BrokeredServiceAudience
- Inheritance
-
BrokeredServiceAudience
- Attributes
Fields
Name | Value | Description |
---|---|---|
Local | 3 | The service is available for clients that support this process (e.g. ServiceHub services). These always run on the same machine and user account. |
Public | 268435456 | The service is considered part of extensibility is available to other extensions. This flag should only be specified for services that have stable APIs. This flag must be combined with other flags to indicate which clients are allowed to request this service. |
Remarks
This is a subset of Microsoft.VisualStudio.ServiceBroker.ServiceAudience.