You've already forked linux-packaging-mono
Imported Upstream version 4.4.0.40
Former-commit-id: 6427cc082e74df30afc535fd906a3494b74b0817
This commit is contained in:
@ -593,6 +593,7 @@ namespace System.Net
|
||||
CheckRequestStarted ();
|
||||
proxy = value;
|
||||
servicePoint = null; // we may need a new one
|
||||
GetServicePoint ();
|
||||
}
|
||||
}
|
||||
|
||||
@ -969,11 +970,17 @@ namespace System.Net
|
||||
}
|
||||
}
|
||||
|
||||
if (!requestSent) {
|
||||
if (requestSent)
|
||||
return;
|
||||
|
||||
try {
|
||||
requestSent = true;
|
||||
redirects = 0;
|
||||
servicePoint = GetServicePoint ();
|
||||
abortHandler = servicePoint.SendRequest (this, connectionGroup);
|
||||
} catch (Exception ex) {
|
||||
aread.SetCompleted (synch, ex);
|
||||
aread.DoCallback ();
|
||||
}
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user