C# 클래스 PlayFab.ClientModels.ExecuteCloudScriptRequest

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

공개 프로퍼티들

프로퍼티 타입 설명
FunctionName string
FunctionParameter object
GeneratePlayStreamEvent bool?
RevisionSelection CloudScriptRevisionOption?
SpecificRevision int?

프로퍼티 상세

FunctionName 공개적으로 프로퍼티

The name of the CloudScript function to execute
public string FunctionName
리턴 string

FunctionParameter 공개적으로 프로퍼티

Object that is passed in to the function as the first argument
public object FunctionParameter
리턴 object

GeneratePlayStreamEvent 공개적으로 프로퍼티

Generate a 'player_executed_cloudscript' PlayStream event containing the results of the function execution and other contextual information. This event will show up in the PlayStream debugger console for the player in Game Manager.
public bool? GeneratePlayStreamEvent
리턴 bool?

RevisionSelection 공개적으로 프로퍼티

Option for which revision of the CloudScript to execute. 'Latest' executes the most recently created revision, 'Live' executes the current live, published revision, and 'Specific' executes the specified revision. The default value is 'Specific', if the SpeificRevision parameter is specified, otherwise it is 'Live'.
public CloudScriptRevisionOption? RevisionSelection
리턴 CloudScriptRevisionOption?

SpecificRevision 공개적으로 프로퍼티

The specivic revision to execute, when RevisionSelection is set to 'Specific'
public int? SpecificRevision
리턴 int?