Leadtools.Codecs Send comments on this topic. | Back to Introduction - All Topics | Help Version 16.5.9.25
UriOperationProxy Property
See Also 
Leadtools.Codecs Namespace > RasterCodecs Class : UriOperationProxy Property



Gets or sets proxy information used with URI-based operations

Syntax

Visual Basic (Declaration) 
Public Property UriOperationProxy As IWebProxy
Visual Basic (Usage)Copy Code
Dim instance As RasterCodecs
Dim value As IWebProxy
 
instance.UriOperationProxy = value
 
value = instance.UriOperationProxy
C# 
public IWebProxy UriOperationProxy {get; set;}
C++/CLI 
public:
property IWebProxy UriOperationProxy {
   IWebProxy get();
   void set (IWebProxy value);
}

Return Value

The IWebProxy object to use to proxy URI-based operation. The default is a null reference (Nothing in Visual Basic).

Example

Remarks

The UriOperationProxy property identifies the WebProxy object to use to process requests to Internet resources.

To override the default proxy to use when accessing a remote resource, you must change the value of the UriOperationProxy property prior to calling any of these methods:

To change the authentication information to use when accessing a remote resource, use the UriOperationCredentials property.

Requirements

Target Platforms: Microsoft .NET Framework 3.0, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also