Show / Hide Table of Contents

Class ReceptionFilters

A selection of filters that can be used to filter received messages.

Inheritance
object
ReceptionFilters
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: ntfy.Filters
Assembly: ntfy.dll
Syntax
public class ReceptionFilters

Properties

| Improve this Doc View Source

Id

Only return messages that match this exact message ID.

Declaration
public string? Id { get; set; }
Property Value
Type Description
string
| Improve this Doc View Source

Message

Only return messages that match this exact message string.

Declaration
public string? Message { get; set; }
Property Value
Type Description
string
| Improve this Doc View Source

Priorities

Only return messages that match any priority listed.

Declaration
public PriorityLevel[]? Priorities { get; set; }
Property Value
Type Description
PriorityLevel[]
| Improve this Doc View Source

Tags

Only return messages that match all listed tags.

Declaration
public string[]? Tags { get; set; }
Property Value
Type Description
string[]
| Improve this Doc View Source

Title

Only return messages that match this exact title string.

Declaration
public string? Title { get; set; }
Property Value
Type Description
string
  • Improve this Doc
  • View Source
In This Article
Back to top Generated by DocFX