Port to use when connecting to a proxy server.
Syntax
| Visual Basic (Declaration) | |
|---|
Public Property ServerPort As Integer |
| Visual Basic (Usage) | Copy Code |
|---|
Dim instance As Proxy
Dim value As Integer
instance.ServerPort = value
value = instance.ServerPort |
| C# | |
|---|
public int ServerPort {get; set;} |
| Managed Extensions for C++ | |
|---|
public: __property int get_ServerPort();
public: __property void set_ServerPort(
int value
); |
| C++/CLI | |
|---|
public:
property int ServerPort {
int get();
void set ( int value);
} |
Property Value
An integer value representing a proxy port to connect to.
Remarks
Requirements
Target Platforms: Microsoft .NET Framework 2.0
See Also