Unable to complete network request to host "{0}". error , but no args
---------------------------------------------------------------------
Key: DNET-904
URL: http://tracker.firebirdsql.org/browse/DNET-904
Project: .NET Data provider
Issue Type: Bug
Components: ADO.NET Provider
Affects Versions: 7.1.1.0
Environment: windows
Reporter: EzberYazan
Assignee: Jiri Cincura
Unable to complete network request to host "{0}".
but no arg on : private static void AppendMessage(StringBuilder builder, string message, List<string> args) {
i solved pratically adding 3 arg for general purposes;
if (args == null || args.Count == 0) { args.Add("no-arg-defined"); args.Add("no-arg-defined"); args.Add("no-arg-defined"); }
private static void AppendMessage(StringBuilder builder, string message, List<string> args) {
if (builder.Length > 0) {
builder.Append(Environment.NewLine);
}
if (args == null || args.Count == 0) { args.Add("no-arg-defined"); args.Add("no-arg-defined"); args.Add("no-arg-defined"); }
builder.AppendFormat(CultureInfo.CurrentCulture, message, args.ToArray());
}
--
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators: http://tracker.firebirdsql.org/secure/Administrators.jspa
-
For more information on JIRA, see: http://www.atlassian.com/software/jira
|