Skip to content

Commit 4a5d32f

Browse files
为点对点 Search() API 增加 getItemInfoEx 子功能
1 parent c05caf9 commit 4a5d32f

File tree

7 files changed

+409
-195
lines changed

7 files changed

+409
-195
lines changed

ChordInstaller/ChordInstaller.csproj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@
3030
<SuiteName>Chord</SuiteName>
3131
<CreateWebPageOnPublish>true</CreateWebPageOnPublish>
3232
<WebPage>publish.htm</WebPage>
33-
<ApplicationRevision>93</ApplicationRevision>
33+
<ApplicationRevision>94</ApplicationRevision>
3434
<ApplicationVersion>1.2.0.%2a</ApplicationVersion>
3535
<UseApplicationTrust>false</UseApplicationTrust>
3636
<PublishWizardCompleted>true</PublishWizardCompleted>

DigitalPlatform.MessageClient/MessageConnection.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,9 +555,10 @@ public virtual async Task<MessageResult> ConnectAsync()
555555
}
556556
catch (HttpRequestException ex)
557557
{
558+
// InnerException
558559
MessageResult result = new MessageResult();
559560
result.Value = -1;
560-
result.ErrorInfo = ex.Message;
561+
result.ErrorInfo = ExceptionUtil.GetExceptionMessage(ex); // ex.Message;
561562
result.String = "HttpRequestException";
562563
return result;
563564
}

TestClient1/TestClient1.csproj

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,39 @@
4545
<HintPath>..\packages\Newtonsoft.Json.13.0.1\lib\net45\Newtonsoft.Json.dll</HintPath>
4646
</Reference>
4747
<Reference Include="System" />
48+
<Reference Include="System.ComponentModel.Composition" />
4849
<Reference Include="System.Core" />
50+
<Reference Include="System.IO, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
51+
<HintPath>..\packages\System.IO.4.3.0\lib\net462\System.IO.dll</HintPath>
52+
<Private>True</Private>
53+
<Private>True</Private>
54+
</Reference>
4955
<Reference Include="System.Messaging" />
56+
<Reference Include="System.Runtime, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
57+
<HintPath>..\packages\System.Runtime.4.3.0\lib\net462\System.Runtime.dll</HintPath>
58+
<Private>True</Private>
59+
<Private>True</Private>
60+
</Reference>
61+
<Reference Include="System.Security.Cryptography.Algorithms, Version=4.2.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
62+
<HintPath>..\packages\System.Security.Cryptography.Algorithms.4.3.0\lib\net463\System.Security.Cryptography.Algorithms.dll</HintPath>
63+
<Private>True</Private>
64+
<Private>True</Private>
65+
</Reference>
66+
<Reference Include="System.Security.Cryptography.Encoding, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
67+
<HintPath>..\packages\System.Security.Cryptography.Encoding.4.3.0\lib\net46\System.Security.Cryptography.Encoding.dll</HintPath>
68+
<Private>True</Private>
69+
<Private>True</Private>
70+
</Reference>
71+
<Reference Include="System.Security.Cryptography.Primitives, Version=4.0.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
72+
<HintPath>..\packages\System.Security.Cryptography.Primitives.4.3.0\lib\net46\System.Security.Cryptography.Primitives.dll</HintPath>
73+
<Private>True</Private>
74+
<Private>True</Private>
75+
</Reference>
76+
<Reference Include="System.Security.Cryptography.X509Certificates, Version=4.1.1.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a, processorArchitecture=MSIL">
77+
<HintPath>..\packages\System.Security.Cryptography.X509Certificates.4.3.0\lib\net461\System.Security.Cryptography.X509Certificates.dll</HintPath>
78+
<Private>True</Private>
79+
<Private>True</Private>
80+
</Reference>
5081
<Reference Include="System.Web" />
5182
<Reference Include="System.Xml.Linq" />
5283
<Reference Include="System.Data.DataSetExtensions" />

0 commit comments

Comments
 (0)