3 instantiations of PluginCreationResult
NuGet.Protocol (3)
Plugins\PluginManager.cs (3)
254
pluginCreationResult = new
PluginCreationResult
(
261
pluginCreationResult = new
PluginCreationResult
(result.Message);
266
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)
24
Task<IEnumerable<
PluginCreationResult
>> CreatePluginsAsync(
42
Task<Tuple<bool,
PluginCreationResult
>> TryGetSourceAgnosticPluginAsync(PluginDiscoveryResult pluginDiscoveryResult, OperationClaim requestedOperationClaim, CancellationToken cancellationToken);
Plugins\PluginCreationResult.cs (3)
42
/// Instantiates a new <see cref="
PluginCreationResult
" /> class.
73
/// Instantiates a new <see cref="
PluginCreationResult
" /> class.
89
/// Instantiates a new <see cref="
PluginCreationResult
" /> class.
Plugins\PluginManager.cs (6)
110
public async Task<IEnumerable<
PluginCreationResult
>> CreatePluginsAsync(
120
var pluginCreationResults = new List<
PluginCreationResult
>();
160
public Task<Tuple<bool,
PluginCreationResult
>> TryGetSourceAgnosticPluginAsync(PluginDiscoveryResult pluginDiscoveryResult, OperationClaim requestedOperationClaim, CancellationToken cancellationToken)
190
private async Task<Tuple<bool,
PluginCreationResult
>> TryCreatePluginAsync(
206
PluginCreationResult
pluginCreationResult = null;
275
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)