3 instantiations of PluginCreationResult
NuGet.Protocol (3)
Plugins\PluginManager.cs (3)
250
pluginCreationResult = new
PluginCreationResult
(
257
pluginCreationResult = new
PluginCreationResult
(result.Message!);
262
pluginCreationResult = new
PluginCreationResult
(
18 references to PluginCreationResult
NuGet.Credentials (4)
SecurePluginCredentialProvider.cs (4)
94
Tuple<bool,
PluginCreationResult
> result = await _pluginManager.TryGetSourceAgnosticPluginAsync(_discoveredPlugin, OperationClaim.Authentication, cancellationToken);
100
PluginCreationResult
creationResult = result.Item2;
152
private async Task SetPluginLogLevelAsync(
PluginCreationResult
plugin, ILogger logger, CancellationToken cancellationToken)
178
private async Task SetProxyCredentialsToPlugin(Uri uri, IWebProxy proxy,
PluginCreationResult
plugin, CancellationToken cancellationToken)
NuGet.Protocol (14)
Plugins\IPluginManager.cs (2)
22
Task<IEnumerable<
PluginCreationResult
>> CreatePluginsAsync(
40
Task<Tuple<bool,
PluginCreationResult
?>> TryGetSourceAgnosticPluginAsync(PluginDiscoveryResult pluginDiscoveryResult, OperationClaim requestedOperationClaim, CancellationToken cancellationToken);
Plugins\PluginCreationResult.cs (3)
53
/// Instantiates a new <see cref="
PluginCreationResult
" /> class.
84
/// Instantiates a new <see cref="
PluginCreationResult
" /> class.
100
/// Instantiates a new <see cref="
PluginCreationResult
" /> class.
Plugins\PluginManager.cs (6)
108
public async Task<IEnumerable<
PluginCreationResult
>> CreatePluginsAsync(
118
var pluginCreationResults = new List<
PluginCreationResult
>();
156
public Task<Tuple<bool,
PluginCreationResult
?>> TryGetSourceAgnosticPluginAsync(PluginDiscoveryResult pluginDiscoveryResult, OperationClaim requestedOperationClaim, CancellationToken cancellationToken)
186
private async Task<Tuple<bool,
PluginCreationResult
?>> TryCreatePluginAsync(
202
PluginCreationResult
? pluginCreationResult = null;
271
return new Tuple<bool,
PluginCreationResult
?>(pluginCreationResult != null, pluginCreationResult);
Resources\PluginResource.cs (3)
26
private readonly IReadOnlyList<
PluginCreationResult
> _pluginCreationResults;
37
IEnumerable<
PluginCreationResult
> pluginCreationResults,
71
foreach (
var
result in _pluginCreationResults)