5 references to GetTokenAsync
dotnet-svcutil-lib (5)
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\HttpsChannelFactory.cs (1)
150
token = requestCertificateProvider.
GetTokenAsync
(timeoutHelper.GetCancellationToken()).GetAwaiter().GetResult();
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\SslStreamSecurityUpgradeProvider.cs (3)
288
SecurityToken token = _serverTokenProvider.
GetTokenAsync
(cts.Token).GetAwaiter().GetResult();
527
_clientToken = (X509SecurityToken)_clientCertificateProvider.
GetTokenAsync
(cts.Token).GetAwaiter().GetResult();
541
_clientToken = (X509SecurityToken)(await _clientCertificateProvider.
GetTokenAsync
(cts.Token));
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportSecurityHelpers.cs (1)
230
SecurityToken result = await tokenProvider.
GetTokenAsync
(cancellationToken);