Photon Unity Networking  v1.84
English | 日本語 | 한국
Public Member Functions | Properties | List of all members
WebRpcResponse Class Reference

WebRpcの操作レスポンスを読み込み、一般的な値に便利にアクセスできるようにします。 More...

Public Member Functions

 WebRpcResponse (OperationResponse response)
 WebRpcへのOperationResponseは、その値を読み込むことが必要です。 More...
 
string ToStringFull ()
 レスポンスを文字列で簡易に読めるように変換します。 More...
 

Properties

string Name [get]
 呼ばれるときの、WebRpc名。 More...
 
int ReturnCode [get]
 WebRpcに応答するWebServiceのReturnCode。 More...
 
string DebugMessage [get]
 空かnullかもしれません。 More...
 
Dictionary< string, object > Parameters [get]
 WebRpcに応答したWebサービスが返してきた、他のキー/値。 More...
 

Detailed Description

WebRpcの操作レスポンスを読み込み、一般的な値に便利にアクセスできるようにします。

PhotonNetwork.WebRpcメソッドをご覧ください。
一般的な結果値にアクセスする、WebRpcResponseを作成します。
operationResponse.OperationCodeはOperationCode.WebRpcであるはずです。

Constructor & Destructor Documentation

WebRpcResponse.WebRpcResponse ( OperationResponse  response)

WebRpcへのOperationResponseは、その値を読み込むことが必要です。

Member Function Documentation

string WebRpcResponse.ToStringFull ( )

レスポンスを文字列で簡易に読めるように変換します。

Returns
結果と同値の文字列。

Property Documentation

string WebRpcResponse.DebugMessage
get

空かnullかもしれません。

string WebRpcResponse.Name
get

呼ばれるときの、WebRpc名。

Dictionary<string, object> WebRpcResponse.Parameters
get

WebRpcに応答したWebサービスが返してきた、他のキー/値。

int WebRpcResponse.ReturnCode
get

WebRpcに応答するWebServiceのReturnCode。

0 は一般的に使用される成功を示します。
-1 はWebRpcサービスからのReturnCodeがなかったことを示します。
他のReturnCodeは個々のWebRpcとサービスで定義されています。