次の方法で共有


PartySetTranscriptionOptionsCompletedStateChange

状態変更の SetTranscriptionOptionsCompleted 型に固有の情報。

構文

struct PartySetTranscriptionOptionsCompletedStateChange : PartyStateChange {  
    PartyStateChangeResult result;  
    PartyError errorDetail;  
    PartyLocalChatControl* localChatControl;  
    PartyVoiceChatTranscriptionOptions options;  
    void* asyncIdentifier;  
}  

メンバー

result PartyStateChangeResult

操作が成功したこと、または失敗した理由を示します。

成功すると、内部状態が更新され、文字起こし操作を localChatControl に代わって試行する必要があるかどうかを反映します。 成功しても、文字起こし操作が正常に完了するとは保証されません。 文字起こし操作を完了できない場合は、PartyStateChangeType::VoiceChatTranscriptionReceived 状態変更の result フィールドを通じて公開されます。

errorDetail PartyError

潜在的なエラー状態に関する追加のトラブルシューティング情報を提供する診断値。

人間が読める形式のエラー詳細情報は、PartyManager::GetErrorMessage() を介して取得できます。

localChatControl PartyLocalChatControl*

この状態変更に関連する呼び出しで使用されるチャット コントロール。

options PartyVoiceChatTranscriptionOptions

この状態変更に関連する呼び出しで使用される文字起こしオプション。

asyncIdentifier void*

この状態変更に関連する呼び出しで提供される async 識別子。

要件

ヘッダー: Party.h

関連項目

パーティーのメンバー
PartyLocalChatControl::SetTranscriptionOptions