C# 클래스 PlayFab.ClientModels.ExecuteCloudScriptResult

상속: PlayFab.SharedModels.PlayFabResultCommon
파일 보기 프로젝트 열기: PlayFab/PlayFabGameServer 1 사용 예제들

공개 프로퍼티들

프로퍼티 타입 설명
APIRequestsIssued int
Error ScriptExecutionError
ExecutionTimeSeconds double
FunctionName string
FunctionResult object
HttpRequestsIssued int
Logs List
MemoryConsumedBytes uint
ProcessorTimeSeconds double
Revision int

프로퍼티 상세

APIRequestsIssued 공개적으로 프로퍼티

Number of PlayFab API requests issued by the CloudScript function
public int APIRequestsIssued
리턴 int

Error 공개적으로 프로퍼티

Information about the error, if any, that occured during execution
public ScriptExecutionError,PlayFab.ClientModels Error
리턴 ScriptExecutionError

ExecutionTimeSeconds 공개적으로 프로퍼티

public double ExecutionTimeSeconds
리턴 double

FunctionName 공개적으로 프로퍼티

The name of the function that executed
public string FunctionName
리턴 string

FunctionResult 공개적으로 프로퍼티

The object returned from the CloudScript function, if any
public object FunctionResult
리턴 object

HttpRequestsIssued 공개적으로 프로퍼티

Number of external HTTP requests issued by the CloudScript function
public int HttpRequestsIssued
리턴 int

Logs 공개적으로 프로퍼티

Entries logged during the function execution. These include both entries logged in the function code using log.info() and log.error() and error entries for API and HTTP request failures.
public List Logs
리턴 List

MemoryConsumedBytes 공개적으로 프로퍼티

public uint MemoryConsumedBytes
리턴 uint

ProcessorTimeSeconds 공개적으로 프로퍼티

Processor time consumed while executing the function. This does not include time spent waiting on API calls or HTTP requests.
public double ProcessorTimeSeconds
리턴 double

Revision 공개적으로 프로퍼티

The revision of the CloudScript that executed
public int Revision
리턴 int