You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: xml/System.Runtime/AmbiguousImplementationException.xml
+21-9Lines changed: 21 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -14,8 +14,20 @@
14
14
</Base>
15
15
<Interfaces />
16
16
<Docs>
17
-
<summary>To be added.</summary>
18
-
<remarks>To be added.</remarks>
17
+
<summary>The exception that is thrown when there are multiple incompatible interface methods overriding another method.</summary>
18
+
<remarks>
19
+
<formattype="text/markdown"><![CDATA[
20
+
21
+
## Remarks
22
+
23
+
Normally, a compilation error is generated if there are multiple incompatible interface methods implementing another interface method. `AmbiguousImplementationException` is thrown when a type in a dependent assembly implements an interface from an assembly that was modified.
24
+
25
+
To resolve the error, the most specific implementation of the interface method has to be provided. The most specific implementation of the interface method can be provided on the class that implements the interface, or on another interface that requires the interface providing the conflicting implementation.
26
+
27
+
`AmbiguousImplementationException` uses the `HRESULT COR_E_AMBIGUOUSIMPLEMENTATION`, which has a value of `0x8013106A`.
28
+
29
+
]]></format>
30
+
</remarks>
19
31
</Docs>
20
32
<Members>
21
33
<MemberMemberName=".ctor">
@@ -31,7 +43,7 @@
31
43
</AssemblyInfo>
32
44
<Parameters />
33
45
<Docs>
34
-
<summary>To be added.</summary>
46
+
<summary>Initializes a new instance of the <seecref="T:System.Runtime.AmbiguousImplementationException" /> class.</summary>
<summary>Initializes a new instance of the <seecref="T:System.Runtime.AmbiguousImplementationException" /> class with a specified error message.</summary>
<paramname="message">A string that describes the error.</param>
89
+
<paramname="innerException">The exception that is the cause of the current exception.</param>
90
+
<summary>Initializes a new instance of the <seecref="T:System.Runtime.AmbiguousImplementationException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.</summary>
0 commit comments