Example #1
0
        public void IsMatch()
        {
            var ch1 = new Channel.Path("some.path.*.hello");
            var ch2 = new Channel.Path("some.path.aa.hello");

            Assert.IsTrue(
                ch1.IsMatch(ch2));
        }
Example #2
0
 public AutoResponse(Type type, String path)
 {
     this.type = type;
     this.path = new Channel.Path(path);
 }
Example #3
0
 public Leave(String path)
 {
     this.path = new Channel.Path(path);
 }
Example #4
0
 public Join(String path)
 {
     this.path = new Channel.Path(path);
 }