-
Notifications
You must be signed in to change notification settings - Fork 264
/
IExceptionConvertor.xml
108 lines (108 loc) · 7.84 KB
/
IExceptionConvertor.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
<Type Name="IExceptionConvertor" FullName="Microsoft.ServiceFabric.Services.Remoting.V2.Client.IExceptionConvertor">
<TypeSignature Language="C#" Value="public interface IExceptionConvertor" />
<TypeSignature Language="ILAsm" Value=".class public interface auto ansi abstract IExceptionConvertor" />
<TypeSignature Language="DocId" Value="T:Microsoft.ServiceFabric.Services.Remoting.V2.Client.IExceptionConvertor" />
<TypeSignature Language="VB.NET" Value="Public Interface IExceptionConvertor" />
<TypeSignature Language="F#" Value="type IExceptionConvertor = interface" />
<AssemblyInfo>
<AssemblyName>Microsoft.ServiceFabric.Services.Remoting</AssemblyName>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Interfaces />
<Docs>
<summary>
Defines an interface to convert service exception to user exception.
</summary>
<remarks>To be added.</remarks>
</Docs>
<Members>
<Member MemberName="TryConvertFromServiceException">
<MemberSignature Language="C#" Value="public bool TryConvertFromServiceException (Microsoft.ServiceFabric.Services.Communication.ServiceException serviceException, out Exception actualException);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryConvertFromServiceException(class Microsoft.ServiceFabric.Services.Communication.ServiceException serviceException, [out] class System.Exception& actualException) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.ServiceFabric.Services.Remoting.V2.Client.IExceptionConvertor.TryConvertFromServiceException(Microsoft.ServiceFabric.Services.Communication.ServiceException,System.Exception@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryConvertFromServiceException (serviceException As ServiceException, ByRef actualException As Exception) As Boolean" />
<MemberSignature Language="F#" Value="abstract member TryConvertFromServiceException : Microsoft.ServiceFabric.Services.Communication.ServiceException * Exception -> bool" Usage="iExceptionConvertor.TryConvertFromServiceException (serviceException, actualException)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.ServiceFabric.Services.Remoting</AssemblyName>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="serviceException" Type="Microsoft.ServiceFabric.Services.Communication.ServiceException" />
<Parameter Name="actualException" Type="System.Exception" RefType="out" />
</Parameters>
<Docs>
<param name="serviceException">Service exception.</param>
<param name="actualException">User exception.</param>
<summary>
Converts the service exception to user exception.
</summary>
<returns>True if converted, false otherwise.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryConvertFromServiceException">
<MemberSignature Language="C#" Value="public bool TryConvertFromServiceException (Microsoft.ServiceFabric.Services.Communication.ServiceException serviceException, Exception innerException, out Exception actualException);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryConvertFromServiceException(class Microsoft.ServiceFabric.Services.Communication.ServiceException serviceException, class System.Exception innerException, [out] class System.Exception& actualException) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.ServiceFabric.Services.Remoting.V2.Client.IExceptionConvertor.TryConvertFromServiceException(Microsoft.ServiceFabric.Services.Communication.ServiceException,System.Exception,System.Exception@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryConvertFromServiceException (serviceException As ServiceException, innerException As Exception, ByRef actualException As Exception) As Boolean" />
<MemberSignature Language="F#" Value="abstract member TryConvertFromServiceException : Microsoft.ServiceFabric.Services.Communication.ServiceException * Exception * Exception -> bool" Usage="iExceptionConvertor.TryConvertFromServiceException (serviceException, innerException, actualException)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.ServiceFabric.Services.Remoting</AssemblyName>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="serviceException" Type="Microsoft.ServiceFabric.Services.Communication.ServiceException" />
<Parameter Name="innerException" Type="System.Exception" />
<Parameter Name="actualException" Type="System.Exception" RefType="out" />
</Parameters>
<Docs>
<param name="serviceException">Service exception.</param>
<param name="innerException">Inner exception.</param>
<param name="actualException">User exception.</param>
<summary>
Converts the service exception to user exception.
</summary>
<returns>True if converted, false otherwise.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
<Member MemberName="TryConvertFromServiceException">
<MemberSignature Language="C#" Value="public bool TryConvertFromServiceException (Microsoft.ServiceFabric.Services.Communication.ServiceException serviceException, Exception[] innerExceptions, out Exception actualException);" />
<MemberSignature Language="ILAsm" Value=".method public hidebysig newslot virtual instance bool TryConvertFromServiceException(class Microsoft.ServiceFabric.Services.Communication.ServiceException serviceException, class System.Exception[] innerExceptions, [out] class System.Exception& actualException) cil managed" />
<MemberSignature Language="DocId" Value="M:Microsoft.ServiceFabric.Services.Remoting.V2.Client.IExceptionConvertor.TryConvertFromServiceException(Microsoft.ServiceFabric.Services.Communication.ServiceException,System.Exception[],System.Exception@)" />
<MemberSignature Language="VB.NET" Value="Public Function TryConvertFromServiceException (serviceException As ServiceException, innerExceptions As Exception(), ByRef actualException As Exception) As Boolean" />
<MemberSignature Language="F#" Value="abstract member TryConvertFromServiceException : Microsoft.ServiceFabric.Services.Communication.ServiceException * Exception[] * Exception -> bool" Usage="iExceptionConvertor.TryConvertFromServiceException (serviceException, innerExceptions, actualException)" />
<MemberType>Method</MemberType>
<AssemblyInfo>
<AssemblyName>Microsoft.ServiceFabric.Services.Remoting</AssemblyName>
<AssemblyVersion>6.0.0.0</AssemblyVersion>
</AssemblyInfo>
<ReturnValue>
<ReturnType>System.Boolean</ReturnType>
</ReturnValue>
<Parameters>
<Parameter Name="serviceException" Type="Microsoft.ServiceFabric.Services.Communication.ServiceException" />
<Parameter Name="innerExceptions" Type="System.Exception[]" />
<Parameter Name="actualException" Type="System.Exception" RefType="out" />
</Parameters>
<Docs>
<param name="serviceException">Service exception.</param>
<param name="innerExceptions">List to inner exception.</param>
<param name="actualException">User exception.</param>
<summary>
Converts the service exception to user exception.
</summary>
<returns>True if converted, false otherwise.</returns>
<remarks>To be added.</remarks>
</Docs>
</Member>
</Members>
</Type>