Table of Contents

Struct GroupSelector

Namespace
Azure.Iot.Operations.Services.EdgeRegistry
Assembly
Azure.Iot.Operations.Services.dll

Selects which Groups an operation targets within a known Group type: the cloud-default Group (the configured namespace), all Groups, or a specific Group identifier. Pairs with WithinGroupType(string, GroupSelector); the cloud-default Group is only meaningful within a Group type, so querying across all Group types uses dedicated GroupQuery factories instead.

public readonly struct GroupSelector
Inherited Members

Properties

All

All Groups of the Group type.

public static GroupSelector All { get; }

Property Value

GroupSelector

Default

The cloud-default Group (the configured namespace) of the Group type.

public static GroupSelector Default { get; }

Property Value

GroupSelector

Methods

Specific(string)

A specific Group identifier.

public static GroupSelector Specific(string groupId)

Parameters

groupId string

Returns

GroupSelector

Operators

implicit operator GroupSelector(string)

Implicitly treats a string as a specific Group identifier.

public static implicit operator GroupSelector(string groupId)

Parameters

groupId string

Returns

GroupSelector