Click or drag to resize

RequestConfigurationCredentials Property

A ICredentials object containing the authentication credentials associated with the current instance. The default is null.

Namespace: Downloader
Assembly: NeoAxis.Core.Editor (in NeoAxis.Core.Editor.dll) Version: 2026.1.1.0 (2026.1.1.0)
Syntax
C#
public ICredentials Credentials { get; set; }

Property Value

ICredentials
Remarks
The property contains authentication information to identify the client making the request. The Credentials property can be either an instance of NetworkCredential, in which case the user, password, and domain information contained in the NetworkCredential instance is used to authenticate the request, or it can be an instance of CredentialCache, in which case the uniform resource identifier (URI) of the request is used to determine the user, password, and domain information to use to authenticate the request.
See Also