Show / Hide Table of Contents

Class MultipartFormDataSection

Inheritance
Object
MultipartFormDataSection
Implements
IMultipartFormSection
Inherited Members
Object.ToString()
Object.Equals(Object)
Object.Equals(Object, Object)
Object.ReferenceEquals(Object, Object)
Object.GetHashCode()
Object.GetType()
Object.MemberwiseClone()
Namespace: UnityEngine.Networking
Assembly: UnityEngine.dll
Syntax
public class MultipartFormDataSection : IMultipartFormSection

Constructors

| Improve this Doc View Source

MultipartFormDataSection(Byte[])

Declaration
public MultipartFormDataSection(byte[] data)
Parameters
Type Name Description
Byte[] data
| Improve this Doc View Source

MultipartFormDataSection(String)

Declaration
public MultipartFormDataSection(string data)
Parameters
Type Name Description
String data
| Improve this Doc View Source

MultipartFormDataSection(String, Byte[])

Declaration
public MultipartFormDataSection(string name, byte[] data)
Parameters
Type Name Description
String name
Byte[] data
| Improve this Doc View Source

MultipartFormDataSection(String, Byte[], String)

Declaration
public MultipartFormDataSection(string name, byte[] data, string contentType)
Parameters
Type Name Description
String name
Byte[] data
String contentType
| Improve this Doc View Source

MultipartFormDataSection(String, String)

Declaration
public MultipartFormDataSection(string name, string data)
Parameters
Type Name Description
String name
String data
| Improve this Doc View Source

MultipartFormDataSection(String, String, String)

Declaration
public MultipartFormDataSection(string name, string data, string contentType)
Parameters
Type Name Description
String name
String data
String contentType
| Improve this Doc View Source

MultipartFormDataSection(String, String, Encoding, String)

Declaration
public MultipartFormDataSection(string name, string data, Encoding encoding, string contentType)
Parameters
Type Name Description
String name
String data
Encoding encoding
String contentType

Properties

| Improve this Doc View Source

contentType

Declaration
public string contentType { get; }
Property Value
Type Description
String
| Improve this Doc View Source

fileName

Declaration
public string fileName { get; }
Property Value
Type Description
String
| Improve this Doc View Source

sectionData

Declaration
public byte[] sectionData { get; }
Property Value
Type Description
Byte[]
| Improve this Doc View Source

sectionName

Declaration
public string sectionName { get; }
Property Value
Type Description
String

Implements

IMultipartFormSection

Extension Methods

MustExtensions.MustBeEqual<T>(T, T)
MustExtensions.MustBeEqual<T>(T, T, String)
MustExtensions.MustNotBeEqual<T>(T, T)
MustExtensions.MustNotBeEqual<T>(T, T, String)
MustExtensions.MustBeNull<T>(T)
MustExtensions.MustBeNull<T>(T, String)
MustExtensions.MustNotBeNull<T>(T)
MustExtensions.MustNotBeNull<T>(T, String)
  • Improve this Doc
  • View Source
Back to top Generated by DocFX