本文整理汇总了C#中System.Net.Connection.Serialize方法的典型用法代码示例。如果您正苦于以下问题:C# Connection.Serialize方法的具体用法?C# Connection.Serialize怎么用?C# Connection.Serialize使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类System.Net.Connection
的用法示例。
在下文中一共展示了Connection.Serialize方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: buttonAddConnection_Click
private void buttonAddConnection_Click(object sender, EventArgs e)
{
if (Core.Instance().Connections.Count >= 100)
{
MessageBox.Show("100 Connections should be enough for everyone ;)");
}
else
{
while (true)
{
AddConnectionForm form = new AddConnectionForm();
ConnectionType ct = ConnectionType.SOCKS;
DialogResult result = form.ShowDialog(this);
if (result == DialogResult.Cancel || result == DialogResult.Abort)
{
break;
}
if (result == DialogResult.OK)
{
if (form.ConnectionName.Trim() == "")
{
MessageBox.Show("Enter a valid Name");
continue;
}
try {
int test = Int32.Parse(form.Localport.ToString());
if (test < 1 || test > 65535) {
MessageBox.Show("Enter a valid local port between 1 and 65535");
continue;
}
}catch(Exception){
MessageBox.Show("Enter a valid local port between 1 and 65535");
continue;
}
if (form.ct.ToString() == ConnectionType.HTTP.ToString())
{
ct = ConnectionType.HTTP;
}
else
{
if (form.ct.ToString() == ConnectionType.SOCKS.ToString())
{
ct = ConnectionType.SOCKS;
}
else
{
if (form.ct.ToString() == ConnectionType.FORWARDING.ToString())
{
ct = ConnectionType.FORWARDING;
if (form.Remotehost.Trim() == "") {
MessageBox.Show("Enter a valid hostname or IP");
continue;
}
try
{
int test = Int32.Parse(form.Remoteport.ToString());
if (test < 1 || test > 65535)
{
MessageBox.Show("Enter a valid remote port between 1 and 65535");
continue;
}
}
catch (Exception)
{
MessageBox.Show("Enter a valid remote port between 1 and 65535");
continue;
}
}
else
{
ct = ConnectionType.SOCKS;
}
}
}
string rh = form.Remotehost;
int rp = form.Remoteport;
if (ct.ToString() != ConnectionType.FORWARDING.ToString())
{
rh = "";
rp = 0;
}
Connection tmpconnection = new Connection(form.ConnectionName, form.Hostname, form.Port, form.Localport, ct, rh, rp);
tmpconnection.Serialize();
Core.Instance().Refresh();
this.UpdateConnections();
break;
}
}
}
this.UpdateConnections();
}