Struct Topic
Dapr-compatible topic identifier. Topics are strings that match the documented naming scheme; subscribers use IEventSubscriber to consume events on a topic, publishers use IEventPublisher to publish.
public readonly record struct Topic : IEquatable<Topic>
- Implements
- Inherited Members
Constructors
Topic(string)
Dapr-compatible topic identifier. Topics are strings that match the documented naming scheme; subscribers use IEventSubscriber to consume events on a topic, publishers use IEventPublisher to publish.
public Topic(string Value)
Parameters
ValuestringDapr topic string.
Properties
Value
Dapr topic string.
public string Value { get; init; }
Property Value
Methods
ToString()
Returns the fully qualified type name of this instance.
public override string ToString()
Returns
- string
The fully qualified type name.