Hi,
When I did a port from JAVA to J#, I need to set proxy settings using setproperty but I tried using the the method recommended in
http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=148074&SiteID=1,
I cannot find the method setproperty(). I am using Framework 1.1. Desperately need help. Thank you.
Warm Regards,
Francis

How to set System.SetProperty() in J#
craigg75
The right code may be the following.
{
java.util.Properties p = System.getProperties();
p.setProperty("Name", "Value");
System.setProperties(p);
}