5 overrides of Credentials
PresentationCore (2)
MS\Internal\IO\Packaging\PseudoWebRequest.cs (1)
166public override ICredentials Credentials
System\IO\Packaging\PackWebRequest.cs (1)
285public override ICredentials Credentials
System.Net.Requests (3)
artifacts\obj\System.Net.Requests\Debug\net10.0\System.Net.Requests.notsupported.cs (3)
41public override System.Net.ICredentials? Credentials { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 129public override System.Net.ICredentials? Credentials { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } } 198public override System.Net.ICredentials? Credentials { get { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } set { throw new System.PlatformNotSupportedException(System.SR.SystemNetRequests_PlatformNotSupported); } }
2 writes to Credentials
PresentationCore (1)
System\IO\Packaging\PackWebRequest.cs (1)
293GetRequest().Credentials = value;
System.Net.WebClient (1)
System\Net\WebClient.cs (1)
228request.Credentials = Credentials;
2 references to Credentials
PresentationCore (2)
MS\Internal\IO\Packaging\NetStream.cs (1)
592Credentials = _originalRequest.Credentials,
System\IO\Packaging\PackWebRequest.cs (1)
289return GetRequest().Credentials;