Exemplo n.º 1
0
        public EventBase(Shiori s, Dictionary <string, string> header)
        {
            this.s      = s;
            this.header = header;
            int i = 0;

            this._reference = new List <string>();
            while (header.ContainsKey("Reference" + i.ToString()))
            {
                this._reference.Add(header["Reference" + i.ToString()]);
                i++;
            }
        }
Exemplo n.º 2
0
 public Resource(Shiori s, Dictionary<string, string> header)
     : base(s, header)
 {
 }
Exemplo n.º 3
0
 public Notify(Shiori s, Dictionary<string, string> header)
     : base(s, header)
 {
 }
Exemplo n.º 4
0
 public Notify(Shiori s, Dictionary <string, string> header) : base(s, header)
 {
 }
Exemplo n.º 5
0
 public Event(Shiori s, Dictionary<string, string> header)
     : base(s, header)
 {
 }
Exemplo n.º 6
0
 public Resource(Shiori s, Dictionary <string, string> header) : base(s, header)
 {
 }
Exemplo n.º 7
0
 public EventBase(Shiori s, Dictionary<string, string> header)
 {
     this.s = s;
     this.header = header;
     int i = 0;
     this._reference = new List<string>();
     while (header.ContainsKey("Reference" + i.ToString()))
     {
         this._reference.Add(header["Reference" + i.ToString()]);
         i++;
     }
 }
Exemplo n.º 8
0
 public Event(Shiori s, Dictionary <string, string> header) : base(s, header)
 {
 }