Class NuGetSource
- Namespace
- MonkeyLoader.NuGet
- Assembly
- MonkeyLoader.dll
Represents a NuGet feed source.
[JsonObject(MemberSerialization = MemberSerialization.OptIn, ItemNullValueHandling = NullValueHandling.Ignore)]
public sealed class NuGetSource
- Inheritance
-
NuGetSource
- Inherited Members
Constructors
NuGetSource(string, Uri)
Creates a new unauthenticated NuGetSource instance with the given details.
[JsonConstructor]
public NuGetSource(string name, Uri sourceUri)
Parameters
name
stringThe nice name of the source.
sourceUri
UriThe URI of the source's feed. Usually ends with
/v3/index.json
NuGetSource(string, Uri, string, string)
Creates a new authenticated NuGetSource instance with the given details.
public NuGetSource(string name, Uri sourceUri, string username, string password)
Parameters
name
stringThe nice name of the source.
sourceUri
UriThe URI of the source's feed. Usually ends with
/v3/index.json
username
stringThe username to use to authenticate with this source.
password
stringThe password to use to authenticate with this source.
Properties
Authenticated
public bool Authenticated { get; }
Property Value
Name
Gets the name of this source, e.g. "Official NuGet Feed".
[JsonProperty("Name")]
public string Name { get; }
Property Value
Password
Gets the password to use to authenticate with this NuGet source.
Should be null
when no authentication is required.
public string? Password { get; }
Property Value
SourceUri
Gets the URI of this NuGet source's feed.
Usually ends with /v3/index.json
[JsonProperty("SourceUri")]
public Uri SourceUri { get; }
Property Value
Username
Gets the username to use to authenticate with this NuGet source.
Should be null
when no authentication is required.
public string? Username { get; }
Property Value
Methods
GetPackageSource()
Gets a NuGet.Configuration.PackageSource created from this NuGet source.
public PackageSource GetPackageSource()
Returns
- PackageSource
The package source based on this.
GetSourceRepository()
Gets a NuGet.Protocol.Core.Types.SourceRepository created from this NuGet source.
public SourceRepository GetSourceRepository()
Returns
- SourceRepository
The source repositor based on this.