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