Пример #1
0
 // Token: 0x06000248 RID: 584 RVA: 0x0000335F File Offset: 0x0000155F
 public MemberReportView(int sourceCmid, int targetCmid, MemberReportType reportType, string reason, string context, int applicationID, string ip)
 {
     this.SourceCmid    = sourceCmid;
     this.TargetCmid    = targetCmid;
     this.ReportType    = reportType;
     this.Reason        = reason;
     this.Context       = context;
     this.ApplicationId = applicationID;
     this.IP            = ip;
 }
    // Token: 0x06000D4D RID: 3405 RVA: 0x0005C554 File Offset: 0x0005A754
    private void Start()
    {
        this._isDropdownActive = false;
        this._abuse            = LocalizedStrings.SelectType;
        Array values = Enum.GetValues(typeof(MemberReportType));

        this._reportTypeTexts = new string[values.Length];
        int num = 0;

        foreach (object obj in values)
        {
            MemberReportType memberReportType = (MemberReportType)((int)obj);
            this._reportTypeTexts[num++] = Enum.GetName(typeof(MemberReportType), memberReportType);
        }
    }