示例#1
0
            public override object?GetNthMask(int index)
            {
                BookTeachesNothing_FieldIndex enu = (BookTeachesNothing_FieldIndex)index;

                switch (enu)
                {
                case BookTeachesNothing_FieldIndex.RawContent:
                    return(RawContent);

                default:
                    return(base.GetNthMask(index));
                }
            }
示例#2
0
            public override void SetNthMask(int index, object obj)
            {
                BookTeachesNothing_FieldIndex enu = (BookTeachesNothing_FieldIndex)index;

                switch (enu)
                {
                case BookTeachesNothing_FieldIndex.RawContent:
                    this.RawContent = (Exception?)obj;
                    break;

                default:
                    base.SetNthMask(index, obj);
                    break;
                }
            }
示例#3
0
            public override void SetNthException(int index, Exception ex)
            {
                BookTeachesNothing_FieldIndex enu = (BookTeachesNothing_FieldIndex)index;

                switch (enu)
                {
                case BookTeachesNothing_FieldIndex.RawContent:
                    this.RawContent = ex;
                    break;

                default:
                    base.SetNthException(index, ex);
                    break;
                }
            }