using System;
namespace System.Net
{
/// Provides the base interface to load and execute scripts for automatic proxy detection.
// Token: 0x02000245 RID: 581
public interface IWebProxyScript
{
/// Closes a script.
// Token: 0x060014C0 RID: 5312
void Close();
/// Loads a script.
/// A indicating whether the script was successfully loaded.
/// Internal only.
/// Internal only.
/// Internal only.
// Token: 0x060014C1 RID: 5313
bool Load(global::System.Uri scriptLocation, string Script, Type helperType);
/// Runs a script.
/// A .
/// Internal only.
/// Internal only.
// Token: 0x060014C2 RID: 5314
string Run(string url, string host);
}
}