Skip to content

Latest commit

 

History

History
11 lines (10 loc) · 418 Bytes

File metadata and controls

11 lines (10 loc) · 418 Bytes
// Call when a support request is being called
private void OnSupportRequest(string userMessage) 
{
    // Assuming the GetSupportFiles method returns a List or similar collection.
    IReadOnlyList<string> supportFiles = callClient.DebugDetails.SupportFiles;

    // Send the files and any user message to your Ticket System            
    DispatchSupportRequestToBackend(userMessage, supportFiles);
}