Class RecordOperationResult
Class to define parameters required for joining a meeting.
Inherited Members
Namespace: Microsoft.Graph.Communications.Calls
Assembly: Microsoft.Graph.Communications.Calls.dll
Syntax
public class RecordOperationResult
Constructors
RecordOperationResult(String, String, ResultInfo)
Initializes a new instance of the RecordOperationResult class.
Declaration
public RecordOperationResult(string recordingLocation, string recordingAccessToken, ResultInfo resultInfo)
Parameters
Type | Name | Description |
---|---|---|
String | recordingLocation | The location of the recording. |
String | recordingAccessToken | Token to access the recording. |
ResultInfo | resultInfo | The result information. |
Properties
RecordingAccessToken
Gets the recording access token required to retrieve the recording.
Declaration
public string RecordingAccessToken { get; }
Property Value
Type | Description |
---|---|
String |
RecordingLocation
Gets the recording location. Link to the "live raw stream as it is being recorded" or "recorded stream after it’s recorded". Client need to call GET request on this link passing RecordingAccessToken as bearer token in order to download the stream.
Declaration
public string RecordingLocation { get; }
Property Value
Type | Description |
---|---|
String |
ResultInfo
Gets the result information.
Declaration
public ResultInfo ResultInfo { get; }
Property Value
Type | Description |
---|---|
ResultInfo | The result information. |