Exemplo n.º 1
0
            public override object?GetNthMask(int index)
            {
                TopicReference_FieldIndex enu = (TopicReference_FieldIndex)index;

                switch (enu)
                {
                case TopicReference_FieldIndex.Reference:
                    return(Reference);

                default:
                    return(base.GetNthMask(index));
                }
            }
Exemplo n.º 2
0
            public override void SetNthMask(int index, object obj)
            {
                TopicReference_FieldIndex enu = (TopicReference_FieldIndex)index;

                switch (enu)
                {
                case TopicReference_FieldIndex.Reference:
                    this.Reference = (Exception?)obj;
                    break;

                default:
                    base.SetNthMask(index, obj);
                    break;
                }
            }
Exemplo n.º 3
0
            public override void SetNthException(int index, Exception ex)
            {
                TopicReference_FieldIndex enu = (TopicReference_FieldIndex)index;

                switch (enu)
                {
                case TopicReference_FieldIndex.Reference:
                    this.Reference = ex;
                    break;

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