Skip to content

格式

typescript
Contract.conversation

所属类: Contract

描述

(只读)当前 Conversation 。

参数

参数名类型描述

返回值

类型描述
NetConversation

代码示例

typescript
class TestRequest extends Contract{
    Exescute(msg: string): void {
        Debug.Log("client send :: ", msg);
    }

    async Receive(): {
        let conv = this.conversation;
    }
}