Class ReceptionFilters
A selection of filters that can be used to filter received messages.
Inherited Members
Namespace: ntfy.Filters
Assembly: ntfy.dll
Syntax
public class ReceptionFilters
Properties
| Improve this Doc View SourceId
Only return messages that match this exact message ID.
Declaration
public string? Id { get; set; }
Property Value
Type | Description |
---|---|
string |
Message
Only return messages that match this exact message string.
Declaration
public string? Message { get; set; }
Property Value
Type | Description |
---|---|
string |
Priorities
Only return messages that match any priority listed.
Declaration
public PriorityLevel[]? Priorities { get; set; }
Property Value
Type | Description |
---|---|
PriorityLevel[] |
Tags
Only return messages that match all listed tags.
Declaration
public string[]? Tags { get; set; }
Property Value
Type | Description |
---|---|
string[] |
Title
Only return messages that match this exact title string.
Declaration
public string? Title { get; set; }
Property Value
Type | Description |
---|---|
string |