AppRecordingManager.StartRecordingToFileAsync(StorageFile) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
將目前應用程式的音訊和視訊內容寫入指定的目的地檔案,從目前時間開始,並在作業取消或超過儲存空間時結束。
public:
virtual IAsyncOperation<AppRecordingResult ^> ^ StartRecordingToFileAsync(StorageFile ^ file) = StartRecordingToFileAsync;
/// [Windows.Foundation.Metadata.RemoteAsync]
IAsyncOperation<AppRecordingResult> StartRecordingToFileAsync(StorageFile const& file);
[Windows.Foundation.Metadata.RemoteAsync]
public IAsyncOperation<AppRecordingResult> StartRecordingToFileAsync(StorageFile file);
function startRecordingToFileAsync(file)
Public Function StartRecordingToFileAsync (file As StorageFile) As IAsyncOperation(Of AppRecordingResult)
參數
- file
- StorageFile
寫入錄製媒體的檔案。
傳回
非同步作業,會在完成時傳回 AppRecordingResult 物件,其中包含錄製作業狀態的相關資訊。
呼叫此方法之前,請先呼叫 GetStatus 並檢查 CanRecord 的值,以判斷目前的應用程式目前是否能夠錄製應用程式。
若要結束以此方法起始的應用程式錄製,請在此方法傳回的IAsyncOperation上呼叫Cancel來取消作業。
- 屬性