1 write to Message
NuGet.Protocol (1)
Plugins\PluginCreationResult.cs (1)
96Message = message;
7 references to Message
NuGet.Credentials (3)
SecurePluginCredentialProvider.cs (3)
102if (!string.IsNullOrEmpty(creationResult.Message)) 106_logger.LogError(creationResult.Message); 113throw 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)
73if (!string.IsNullOrEmpty(result.Message)) 75throw new PluginException(result.Message);