Example #1
0
 public void InitEvent(XmlEventType eventType, string s1, string s2, string s3)
 {
     this.eventType = eventType;
     this.s1        = s1;
     this.s2        = s2;
     this.s3        = s3;
 }
Example #2
0
 public void InitEvent(XmlEventType eventType, string s1, string s2, string s3)
 {
     _eventType = eventType;
     _s1        = s1;
     _s2        = s2;
     _s3        = s3;
 }
Example #3
0
 public void InitEvent(XmlEventType eventType, string s1, string s2, string s3, object o)
 {
     _eventType = eventType;
     _s1        = s1;
     _s2        = s2;
     _s3        = s3;
     _o         = o;
 }
Example #4
0
        private void AddEvent(XmlEventType eventType, string s1, string s2, string s3, object o)
        {
            int index = this.NewEvent();

            this.pageCurr[index].InitEvent(eventType, s1, s2, s3, o);
        }
Example #5
0
 public void InitEvent(XmlEventType eventType, string s1, string s2, string s3, object o) {
     this.eventType = eventType;
     this.s1 = s1;
     this.s2 = s2;
     this.s3 = s3;
     this.o = o;
 }
Example #6
0
 public void InitEvent(XmlEventType eventType, string s1) {
     this.eventType = eventType;
     this.s1 = s1;
 }
Example #7
0
 private void AddEvent(XmlEventType eventType, object o) {
     int idx = NewEvent();
     this.pageCurr[idx].InitEvent(eventType, o);
 }
Example #8
0
 public void InitEvent(XmlEventType eventType, object o)
 {
     this.eventType = eventType;
     this.o         = o;
 }
Example #9
0
 public void InitEvent(XmlEventType eventType, string s1)
 {
     this.eventType = eventType;
     this.s1        = s1;
 }
Example #10
0
        private void AddEvent(XmlEventType eventType, object o)
        {
            int idx = NewEvent();

            this.pageCurr[idx].InitEvent(eventType, o);
        }
Example #11
0
 public void InitEvent(XmlEventType eventType, object o)
 {
     _eventType = eventType;
     _o         = o;
 }
Example #12
0
 public void InitEvent(XmlEventType eventType, string s1)
 {
     _eventType = eventType;
     _s1        = s1;
 }
Example #13
0
 public void InitEvent(XmlEventType eventType)
 {
     _eventType = eventType;
 }
Example #14
0
        private void AddEvent(XmlEventType eventType, string s1, string s2, string s3, object o)
        {
            int idx = NewEvent();

            _pageCurr[idx].InitEvent(eventType, s1, s2, s3, o);
        }
Example #15
0
        private void AddEvent(XmlEventType eventType, string s1)
        {
            int idx = NewEvent();

            _pageCurr[idx].InitEvent(eventType, s1);
        }
Example #16
0
        private void AddEvent(XmlEventType eventType)
        {
            int idx = NewEvent();

            _pageCurr ![idx].InitEvent(eventType);
Example #17
0
        private void AddEvent(XmlEventType eventType, string s1, string s2, string s3)
        {
            int idx = NewEvent();

            this.pageCurr[idx].InitEvent(eventType, s1, s2, s3);
        }
Example #18
0
 private void AddEvent(XmlEventType eventType, string s1)
 {
     int idx = NewEvent();
     _pageCurr[idx].InitEvent(eventType, s1);
 }
Example #19
0
 public void InitEvent(XmlEventType eventType)
 {
     this.eventType = eventType;
 }
Example #20
0
 private void AddEvent(XmlEventType eventType, string s1, string s2, string s3, object o)
 {
     int idx = NewEvent();
     _pageCurr[idx].InitEvent(eventType, s1, s2, s3, o);
 }
Example #21
0
 public void InitEvent(XmlEventType eventType)
 {
     _eventType = eventType;
 }
Example #22
0
 public void InitEvent(XmlEventType eventType, string s1)
 {
     _eventType = eventType;
     _s1 = s1;
 }
Example #23
0
 private void AddEvent(XmlEventType eventType, string s1, string s2, string s3) {
     int idx = NewEvent();
     this.pageCurr[idx].InitEvent(eventType, s1, s2, s3);
 }
Example #24
0
 public void InitEvent(XmlEventType eventType, string s1, string s2, string s3)
 {
     _eventType = eventType;
     _s1 = s1;
     _s2 = s2;
     _s3 = s3;
 }
Example #25
0
 public void InitEvent(XmlEventType eventType) {
     this.eventType = eventType;
 }
Example #26
0
 public void InitEvent(XmlEventType eventType, string s1, string s2, string s3, object o)
 {
     _eventType = eventType;
     _s1 = s1;
     _s2 = s2;
     _s3 = s3;
     _o = o;
 }
Example #27
0
 public void InitEvent(XmlEventType eventType, string s1, string s2) {
     this.eventType = eventType;
     this.s1 = s1;
     this.s2 = s2;
 }
Example #28
0
 public void InitEvent(XmlEventType eventType, object o)
 {
     _eventType = eventType;
     _o = o;
 }
Example #29
0
 public void InitEvent(XmlEventType eventType, object o) {
     this.eventType = eventType;
     this.o = o;
 }
Example #30
0
        private void AddEvent(XmlEventType eventType, string s1)
        {
            int index = this.NewEvent();

            this.pageCurr[index].InitEvent(eventType, s1);
        }