GlobalBrokeredServiceContainer.ExportDiagnosticsAsync 메서드
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
JSON 파일에 많은 진단 데이터를 씁니다.
public System.Threading.Tasks.Task ExportDiagnosticsAsync (string filePath, Microsoft.VisualStudio.Shell.ServiceBroker.ServiceAudience serviceAudience, System.Threading.CancellationToken cancellationToken = default);
abstract member ExportDiagnosticsAsync : string * Microsoft.VisualStudio.Shell.ServiceBroker.ServiceAudience * System.Threading.CancellationToken -> System.Threading.Tasks.Task
override this.ExportDiagnosticsAsync : string * Microsoft.VisualStudio.Shell.ServiceBroker.ServiceAudience * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function ExportDiagnosticsAsync (filePath As String, serviceAudience As ServiceAudience, Optional cancellationToken As CancellationToken = Nothing) As Task
매개 변수
- filePath
- String
쓸 JSON 파일의 경로입니다. 이미 있는 경우 덮어씁니다.
- serviceAudience
- ServiceAudience
대상 그룹입니다.
- cancellationToken
- CancellationToken
취소 토큰입니다.
반환
쓰기가 완료되면 완료되는 작업입니다.
구현
설명
JSON 파일의 대략적인 스키마:
{
"perspectiveAudience": "Process",
"activeRemoteSources" : [ "TrustedServer" ],
"brokeredServices": [
{
name: "Calculator",
version: "1.0",
audience: "Local, Process, Guest",
allowGuestClients: false,
profferingPackage: "{28074D43-B498-47FE-97CF-4A182DA71C59}"
profferedLocally: true,
activeSource: "TrustedServer",
includedByRemoteSourceManifest: true
},
{
// ...
},
// ...
]
}