Esempio 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++;
            }
        }
Esempio n. 2
0
 public Resource(Shiori s, Dictionary<string, string> header)
     : base(s, header)
 {
 }
Esempio n. 3
0
 public Notify(Shiori s, Dictionary<string, string> header)
     : base(s, header)
 {
 }
Esempio n. 4
0
 public Notify(Shiori s, Dictionary <string, string> header) : base(s, header)
 {
 }
Esempio n. 5
0
 public Event(Shiori s, Dictionary<string, string> header)
     : base(s, header)
 {
 }
Esempio n. 6
0
 public Resource(Shiori s, Dictionary <string, string> header) : base(s, header)
 {
 }
Esempio 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++;
     }
 }
Esempio n. 8
0
 public Event(Shiori s, Dictionary <string, string> header) : base(s, header)
 {
 }