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,24 @@
using System;
namespace UnityEngine.Networking
{
// Token: 0x0200028C RID: 652
public interface IMultipartFormSection
{
// Token: 0x17000A2F RID: 2607
// (get) Token: 0x06002CD4 RID: 11476
string sectionName { get; }
// Token: 0x17000A30 RID: 2608
// (get) Token: 0x06002CD5 RID: 11477
byte[] sectionData { get; }
// Token: 0x17000A31 RID: 2609
// (get) Token: 0x06002CD6 RID: 11478
string fileName { get; }
// Token: 0x17000A32 RID: 2610
// (get) Token: 0x06002CD7 RID: 11479
string contentType { get; }
}
}