C# 클래스 UnityEngine.WWWForm

Helper class to generate form data to post to web servers using the WWW class.

파일 보기 프로젝트 열기: CarlosHBC/UnityDecompiled 1 사용 예제들

공개 메소드들

메소드 설명
AddBinaryData ( string fieldName, byte contents, [ fileName, [ mimeType ) : void

Add binary data to the form.

AddField ( string fieldName, int i ) : void

Adds a simple field to the form.

AddField ( string fieldName, string value, [ e ) : void

Add a simple field to the form.

WWWForm ( ) : System

Creates an empty WWWForm object.

비공개 메소드들

메소드 설명
AddBinaryData ( string fieldName, byte contents ) : void
AddBinaryData ( string fieldName, byte contents, string fileName ) : void
AddField ( string fieldName, string value ) : void

메소드 상세

AddBinaryData() 공개 메소드

Add binary data to the form.

public AddBinaryData ( string fieldName, byte contents, [ fileName, [ mimeType ) : void
fieldName string
contents byte
fileName [
mimeType [
리턴 void

AddField() 공개 메소드

Adds a simple field to the form.

public AddField ( string fieldName, int i ) : void
fieldName string
i int
리턴 void

AddField() 공개 메소드

Add a simple field to the form.

public AddField ( string fieldName, string value, [ e ) : void
fieldName string
value string
e [
리턴 void

WWWForm() 공개 메소드

Creates an empty WWWForm object.

public WWWForm ( ) : System
리턴 System