Enum ServiceSelector
ServiceSelector specifies how a client SHOULD select a set of Services to connect to. A client SHOULD throw an error if the value is SERVICE_SELECTOR_UNDEFINED.
public enum ServiceSelector
Fields
[OriginalName("ALL")] All = 1Clients SHOULD select all Services based on supported API version and validity window.
[OriginalName("ANY")] Any = 2Clients SHOULD select one Service based on supported API version and validity window. It is up to the client implementation to decide how to select the Service, e.g. random or round-robin.
[OriginalName("EXACT")] Exact = 3Clients SHOULD select a specific number of Services based on supported API version and validity window, using the provided
count. It is up to the client implementation to decide how to select the Service, e.g. random or round-robin.[OriginalName("SERVICE_SELECTOR_UNDEFINED")] Undefined = 0