1 write to Message
NuGet.Protocol (1)
Plugins\PluginCreationResult.cs (1)
96
Message
= message;
7 references to Message
NuGet.Credentials (3)
SecurePluginCredentialProvider.cs (3)
102
if (!string.IsNullOrEmpty(creationResult.
Message
))
106
_logger.LogError(creationResult.
Message
);
113
throw new PluginException(creationResult.
Message
, creationResult.Exception); // Throwing here will block authentication and ensure that the complete operation fails.
NuGet.Protocol (4)
Plugins\PluginCreationResult.cs (2)
44
/// When <see langword="false" />, <see cref="
Message
" /> is guaranteed to be non-<see langword="null" />.
49
[MemberNotNullWhen(false, nameof(
Message
))]
Resources\PluginResource.cs (2)
73
if (!string.IsNullOrEmpty(result.
Message
))
75
throw new PluginException(result.
Message
);