A topic pattern expresses a simple matching rule for topics.

Namespace:  Gallio.Common.Messaging
Assembly:  Gallio (in Gallio.dll) Version: 3.3.0.0 (3.3.459.0)

Syntax

C#
[SerializableAttribute]
public class TopicPattern
Visual Basic (Declaration)
<SerializableAttribute> _
Public Class TopicPattern

Remarks

Topic pattern matching proceeds word-wise where words within the topic are separated by periods ('.'). There are two wildcards: '*' matches a single word and '#' matches zero or more consecutive words. The topic must be matched in full by the topic pattern; partial matches are of no significance.

Inheritance Hierarchy

System..::.Object
  Gallio.Common.Messaging..::.TopicPattern

See Also