This commit is contained in:
niko
2026-06-04 11:42:34 +02:00
parent f39ba70a9f
commit e720b98cd1
7488 changed files with 2493818 additions and 0 deletions
@@ -0,0 +1,345 @@
using System;
using System.Collections.Specialized;
using System.Globalization;
namespace System.Net.NetworkInformation
{
// Token: 0x02000186 RID: 390
internal class MibIcmpV6Statistics : IcmpV6Statistics
{
// Token: 0x06000D70 RID: 3440 RVA: 0x00026610 File Offset: 0x00024810
public MibIcmpV6Statistics(global::System.Collections.Specialized.StringDictionary dic)
{
this.dic = dic;
}
// Token: 0x06000D71 RID: 3441 RVA: 0x00026620 File Offset: 0x00024820
private long Get(string name)
{
return (this.dic[name] == null) ? 0L : long.Parse(this.dic[name], NumberFormatInfo.InvariantInfo);
}
// Token: 0x1700042E RID: 1070
// (get) Token: 0x06000D72 RID: 3442 RVA: 0x0002665C File Offset: 0x0002485C
public override long DestinationUnreachableMessagesReceived
{
get
{
return this.Get("InDestUnreachs");
}
}
// Token: 0x1700042F RID: 1071
// (get) Token: 0x06000D73 RID: 3443 RVA: 0x0002666C File Offset: 0x0002486C
public override long DestinationUnreachableMessagesSent
{
get
{
return this.Get("OutDestUnreachs");
}
}
// Token: 0x17000430 RID: 1072
// (get) Token: 0x06000D74 RID: 3444 RVA: 0x0002667C File Offset: 0x0002487C
public override long EchoRepliesReceived
{
get
{
return this.Get("InEchoReplies");
}
}
// Token: 0x17000431 RID: 1073
// (get) Token: 0x06000D75 RID: 3445 RVA: 0x0002668C File Offset: 0x0002488C
public override long EchoRepliesSent
{
get
{
return this.Get("OutEchoReplies");
}
}
// Token: 0x17000432 RID: 1074
// (get) Token: 0x06000D76 RID: 3446 RVA: 0x0002669C File Offset: 0x0002489C
public override long EchoRequestsReceived
{
get
{
return this.Get("InEchos");
}
}
// Token: 0x17000433 RID: 1075
// (get) Token: 0x06000D77 RID: 3447 RVA: 0x000266AC File Offset: 0x000248AC
public override long EchoRequestsSent
{
get
{
return this.Get("OutEchos");
}
}
// Token: 0x17000434 RID: 1076
// (get) Token: 0x06000D78 RID: 3448 RVA: 0x000266BC File Offset: 0x000248BC
public override long ErrorsReceived
{
get
{
return this.Get("InErrors");
}
}
// Token: 0x17000435 RID: 1077
// (get) Token: 0x06000D79 RID: 3449 RVA: 0x000266CC File Offset: 0x000248CC
public override long ErrorsSent
{
get
{
return this.Get("OutErrors");
}
}
// Token: 0x17000436 RID: 1078
// (get) Token: 0x06000D7A RID: 3450 RVA: 0x000266DC File Offset: 0x000248DC
public override long MembershipQueriesReceived
{
get
{
return this.Get("InGroupMembQueries");
}
}
// Token: 0x17000437 RID: 1079
// (get) Token: 0x06000D7B RID: 3451 RVA: 0x000266EC File Offset: 0x000248EC
public override long MembershipQueriesSent
{
get
{
return this.Get("OutGroupMembQueries");
}
}
// Token: 0x17000438 RID: 1080
// (get) Token: 0x06000D7C RID: 3452 RVA: 0x000266FC File Offset: 0x000248FC
public override long MembershipReductionsReceived
{
get
{
return this.Get("InGroupMembReductiions");
}
}
// Token: 0x17000439 RID: 1081
// (get) Token: 0x06000D7D RID: 3453 RVA: 0x0002670C File Offset: 0x0002490C
public override long MembershipReductionsSent
{
get
{
return this.Get("OutGroupMembReductiions");
}
}
// Token: 0x1700043A RID: 1082
// (get) Token: 0x06000D7E RID: 3454 RVA: 0x0002671C File Offset: 0x0002491C
public override long MembershipReportsReceived
{
get
{
return this.Get("InGroupMembRespons");
}
}
// Token: 0x1700043B RID: 1083
// (get) Token: 0x06000D7F RID: 3455 RVA: 0x0002672C File Offset: 0x0002492C
public override long MembershipReportsSent
{
get
{
return this.Get("OutGroupMembRespons");
}
}
// Token: 0x1700043C RID: 1084
// (get) Token: 0x06000D80 RID: 3456 RVA: 0x0002673C File Offset: 0x0002493C
public override long MessagesReceived
{
get
{
return this.Get("InMsgs");
}
}
// Token: 0x1700043D RID: 1085
// (get) Token: 0x06000D81 RID: 3457 RVA: 0x0002674C File Offset: 0x0002494C
public override long MessagesSent
{
get
{
return this.Get("OutMsgs");
}
}
// Token: 0x1700043E RID: 1086
// (get) Token: 0x06000D82 RID: 3458 RVA: 0x0002675C File Offset: 0x0002495C
public override long NeighborAdvertisementsReceived
{
get
{
return this.Get("InNeighborAdvertisements");
}
}
// Token: 0x1700043F RID: 1087
// (get) Token: 0x06000D83 RID: 3459 RVA: 0x0002676C File Offset: 0x0002496C
public override long NeighborAdvertisementsSent
{
get
{
return this.Get("OutNeighborAdvertisements");
}
}
// Token: 0x17000440 RID: 1088
// (get) Token: 0x06000D84 RID: 3460 RVA: 0x0002677C File Offset: 0x0002497C
public override long NeighborSolicitsReceived
{
get
{
return this.Get("InNeighborSolicits");
}
}
// Token: 0x17000441 RID: 1089
// (get) Token: 0x06000D85 RID: 3461 RVA: 0x0002678C File Offset: 0x0002498C
public override long NeighborSolicitsSent
{
get
{
return this.Get("OutNeighborSolicits");
}
}
// Token: 0x17000442 RID: 1090
// (get) Token: 0x06000D86 RID: 3462 RVA: 0x0002679C File Offset: 0x0002499C
public override long PacketTooBigMessagesReceived
{
get
{
return this.Get("InPktTooBigs");
}
}
// Token: 0x17000443 RID: 1091
// (get) Token: 0x06000D87 RID: 3463 RVA: 0x000267AC File Offset: 0x000249AC
public override long PacketTooBigMessagesSent
{
get
{
return this.Get("OutPktTooBigs");
}
}
// Token: 0x17000444 RID: 1092
// (get) Token: 0x06000D88 RID: 3464 RVA: 0x000267BC File Offset: 0x000249BC
public override long ParameterProblemsReceived
{
get
{
return this.Get("InParmProblems");
}
}
// Token: 0x17000445 RID: 1093
// (get) Token: 0x06000D89 RID: 3465 RVA: 0x000267CC File Offset: 0x000249CC
public override long ParameterProblemsSent
{
get
{
return this.Get("OutParmProblems");
}
}
// Token: 0x17000446 RID: 1094
// (get) Token: 0x06000D8A RID: 3466 RVA: 0x000267DC File Offset: 0x000249DC
public override long RedirectsReceived
{
get
{
return this.Get("InRedirects");
}
}
// Token: 0x17000447 RID: 1095
// (get) Token: 0x06000D8B RID: 3467 RVA: 0x000267EC File Offset: 0x000249EC
public override long RedirectsSent
{
get
{
return this.Get("OutRedirects");
}
}
// Token: 0x17000448 RID: 1096
// (get) Token: 0x06000D8C RID: 3468 RVA: 0x000267FC File Offset: 0x000249FC
public override long RouterAdvertisementsReceived
{
get
{
return this.Get("InRouterAdvertisements");
}
}
// Token: 0x17000449 RID: 1097
// (get) Token: 0x06000D8D RID: 3469 RVA: 0x0002680C File Offset: 0x00024A0C
public override long RouterAdvertisementsSent
{
get
{
return this.Get("OutRouterAdvertisements");
}
}
// Token: 0x1700044A RID: 1098
// (get) Token: 0x06000D8E RID: 3470 RVA: 0x0002681C File Offset: 0x00024A1C
public override long RouterSolicitsReceived
{
get
{
return this.Get("InRouterSolicits");
}
}
// Token: 0x1700044B RID: 1099
// (get) Token: 0x06000D8F RID: 3471 RVA: 0x0002682C File Offset: 0x00024A2C
public override long RouterSolicitsSent
{
get
{
return this.Get("OutRouterSolicits");
}
}
// Token: 0x1700044C RID: 1100
// (get) Token: 0x06000D90 RID: 3472 RVA: 0x0002683C File Offset: 0x00024A3C
public override long TimeExceededMessagesReceived
{
get
{
return this.Get("InTimeExcds");
}
}
// Token: 0x1700044D RID: 1101
// (get) Token: 0x06000D91 RID: 3473 RVA: 0x0002684C File Offset: 0x00024A4C
public override long TimeExceededMessagesSent
{
get
{
return this.Get("OutTimeExcds");
}
}
// Token: 0x04000C1F RID: 3103
private global::System.Collections.Specialized.StringDictionary dic;
}
}