IWebProxy.Credentials 屬性
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
認證,要送出至 Proxy 伺服器進行驗證。
public:
property System::Net::ICredentials ^ Credentials { System::Net::ICredentials ^ get(); void set(System::Net::ICredentials ^ value); };
public System.Net.ICredentials Credentials { get; set; }
public System.Net.ICredentials? Credentials { get; set; }
member this.Credentials : System.Net.ICredentials with get, set
Public Property Credentials As ICredentials
屬性值
ICredentials 執行個體 (Instance),包含要驗證 Proxy 伺服器要求所需的認證。
範例
下列範例會 Credentials 使用 屬性來設定將提交至 Proxy 伺服器的認證以進行驗證。
public ref class WebProxy_Interface: public IWebProxy
{
private:
// The credentials to be used with the web proxy.
ICredentials^ iCredentials;
// Uri of the associated proxy server.
Uri^ webProxyUri;
public:
WebProxy_Interface( Uri^ proxyUri )
{
webProxyUri = proxyUri;
}
property ICredentials^ Credentials
{
// Get and Set the Credentials property.
virtual ICredentials^ get()
{
return iCredentials;
}
virtual void set( ICredentials^ value )
{
if ( iCredentials != value )
{
iCredentials = value;
}
}
}
// Return the web proxy for the specified destination (destUri).
virtual Uri^ GetProxy( Uri^ destUri )
{
// Always use the same proxy.
return webProxyUri;
}
// Return whether the web proxy should be bypassed for the specified destination (hostUri).
virtual bool IsBypassed( Uri^ hostUri )
{
// Never bypass the proxy.
return false;
}
};
public class WebProxy_Interface : IWebProxy
{
// The credentials to be used with the web proxy.
private ICredentials iCredentials;
// Uri of the associated proxy server.
private Uri webProxyUri;
public WebProxy_Interface(Uri proxyUri) {
webProxyUri = proxyUri;
}
// Get and Set the Credentials property.
public ICredentials Credentials {
get {
return iCredentials;
}
set {
if(iCredentials != value)
iCredentials = value;
}
}
// Return the web proxy for the specified destination(destUri).
public Uri? GetProxy(Uri destUri) {
// Always use the same proxy.
return webProxyUri;
}
// Return whether the web proxy should be bypassed for the specified destination(hostUri).
public bool IsBypassed(Uri hostUri) {
// Never bypass the proxy.
return false;
}
}
Public Class WebProxy_Interface
Implements IWebProxy
'The credentials to be used with the web proxy.
Private iCredentials As ICredentials
'Uri of the associated proxy server.
Private webProxyUri As Uri
Sub New(proxyUri As Uri)
webProxyUri = proxyUri
End Sub
'Get and Set the Credentials property.
Public Property Credentials() As ICredentials Implements IWebProxy.Credentials
Get
Return iCredentials
End Get
Set
If iCredentials Is value Then
iCredentials = value
End If
End Set
End Property
'Returns the web proxy for the specified destination(destUri).
Public Function GetProxy(destUri As Uri) As Uri Implements IWebProxy.GetProxy
'Always use the same proxy.
Return webProxyUri
End Function 'GetProxy
'Returns whether the web proxy should be bypassed for the specified destination(hostUri).
Public Function IsBypassed(hostUri As Uri) As Boolean Implements IWebProxy.IsBypassed
'Never bypass the proxy.
Return False
End Function 'IsBypassed
End Class
備註
屬性 Credentials 是 ICredentials 實例,其中包含要傳送至 Proxy 伺服器的授權認證,以回應 HTTP 407 (Proxy 授權) 狀態代碼。