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
@@ -1641,7 +1641,7 @@ This method overload uses the <xref:System.AppDomainSetup> information from the
1641
1641
<exception cref="T:System.MissingMethodException">No matching public constructor was found.</exception>
1642
1642
<exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
1643
1643
<exception cref="T:System.TypeLoadException">
1644
-
<paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
1644
+
<paramref name="typeName" /> was not found in <paramref name="assemblyName" />.</exception>
1645
1645
<exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
@@ -1753,7 +1753,7 @@ This method overload uses the <xref:System.AppDomainSetup> information from the
1753
1753
<exception cref="T:System.MissingMethodException">No matching constructor was found.</exception>
1754
1754
<exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
1755
1755
<exception cref="T:System.TypeLoadException">
1756
-
<paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
1756
+
<paramref name="typeName" /> was not found in <paramref name="assemblyName" />.</exception>
1757
1757
<exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
@@ -1849,7 +1849,7 @@ This method overload uses the <xref:System.AppDomainSetup> information from the
1849
1849
1850
1850
<paramref name="securityAttributes" /> is not <see langword="null" />. When legacy CAS policy is not enabled, <paramref name="securityAttributes" /> should be <see langword="null" /></exception>
1851
1851
<exception cref="T:System.TypeLoadException">
1852
-
<paramref name="typename" /> was not found in <paramref name="assemblyName" />.</exception>
1852
+
<paramref name="typeName" /> was not found in <paramref name="assemblyName" />.</exception>
1853
1853
<exception cref="T:System.NullReferenceException">This instance is <see langword="null" />.</exception>
<paramref name="assemblyName" /> was not found.</exception>
2281
2281
<exception cref="T:System.MethodAccessException">The caller does not have permission to call this constructor.</exception>
@@ -3046,25 +3046,25 @@ This method overload uses the <xref:System.AppDomainSetup> information from the
3046
3046
]]></format>
3047
3047
</remarks>
3048
3048
<exception cref="T:System.ArgumentNullException">
3049
-
<paramref name="assemblyName" /> is <see langword="null" />.
3049
+
<paramref name="assemblyFile" /> is <see langword="null" />.
3050
3050
3051
3051
-or-
3052
3052
3053
3053
<paramref name="typeName" /> is <see langword="null" />.</exception>
3054
3054
<exception cref="T:System.NotSupportedException">The caller cannot provide activation attributes for an object that does not inherit from <see cref="T:System.MarshalByRefObject" />.</exception>
3055
3055
<exception cref="T:System.AppDomainUnloadedException">The operation is attempted on an unloaded application domain.</exception>
<paramref name="assemblyName" /> is not a valid assembly.
3063
+
<paramref name="assemblyFile" /> is not a valid assembly.
3064
3064
3065
3065
-or-
3066
3066
3067
-
<paramref name="assemblyName" /> was compiled with a later version of the common language runtime that the version that is currently loaded.</exception>
3067
+
<paramref name="assemblyFile" /> was compiled with a later version of the common language runtime that the version that is currently loaded.</exception>
3068
3068
<exception cref="T:System.IO.FileLoadException">An assembly or module was loaded twice with two different evidences.</exception>
Copy file name to clipboardExpand all lines: xml/System/ArgumentException.xml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -650,13 +650,13 @@ The following example demonstrates how to throw and catch an <xref:System.Argume
650
650
651
651
</term><description> Value
652
652
653
-
</description></listheader><item><term> The <paramrefname="paramName" /> is a null reference (<seelangword="Nothing" /> in Visual Basic) or of zero length.
653
+
</description></listheader><item><term> The <seecref="P:System.ArgumentException.ParamName" /> is a null reference (<seelangword="Nothing" /> in Visual Basic) or of zero length.
654
654
655
-
</term><description> The <paramrefname="message" /> string passed to the constructor.
655
+
</term><description> The <seecref="P:System.ArgumentException.Message" /> string passed to the constructor.
656
656
657
-
</description></item><item><term> The <paramrefname="paramName" /> is not null reference (<seelangword="Nothing" /> in Visual Basic) and it has a length greater than zero.
657
+
</description></item><item><term> The <seecref="P:System.ArgumentException.ParamName" /> is not null and has a length greater than zero.
658
658
659
-
</term><description> The <paramrefname="message" /> string appended with the name of the invalid parameter.
659
+
</term><description> The <seecref="P:System.ArgumentException.Message" /> string appended with the name of the invalid parameter.
Copy file name to clipboardExpand all lines: xml/System/ArgumentOutOfRangeException.xml
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -848,13 +848,13 @@ The following example defines a class to contain information about an invited gu
848
848
849
849
</term><description> Value
850
850
851
-
</description></listheader><item><term> The <paramrefname="actualValue" /> is <seelangword="null" />.
851
+
</description></listheader><item><term> The <seecref="P:System.ArgumentOutOfRangeException.ActualValue" /> is <seelangword="null" />.
852
852
853
-
</term><description> The <paramrefname="message" /> string passed to the constructor.
853
+
</term><description> The <seecref="P:System.ArgumentOutOfRangeException.Message" /> string passed to the constructor.
854
854
855
-
</description></item><item><term> The <paramrefname="actualValue" /> is not <seelangword="null" />.
855
+
</description></item><item><term> The <seecref="P:System.ArgumentOutOfRangeException.ActualValue" /> is not <seelangword="null" />.
856
856
857
-
</term><description> The <paramrefname="message" /> string appended with the string representation of the invalid argument value.
857
+
</term><description> The <seecref="P:System.ArgumentOutOfRangeException.Message" /> string appended with the string representation of the invalid argument value.
<paramref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface.</exception>
822
+
<typeparamref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface.</exception>
823
823
<altmember cref="T:System.IComparable`1" />
824
824
<altmember cref="Overload:System.Array.Sort" />
825
825
<related type="Article" href="/dotnet/standard/globalization-localization/performing-culture-insensitive-string-operations-in-arrays">Performing Culture-Insensitive String Operations in Arrays</related>
@@ -954,7 +954,7 @@
954
954
<exception cref="T:System.ArgumentException">
955
955
<paramref name="comparer" /> is <see langword="null" />, and <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />.</exception>
<paramref name="comparer" /> is <see langword="null" />, and <paramref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface</exception>
957
+
<paramref name="comparer" /> is <see langword="null" />, and <typeparamref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface</exception>
<paramref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface.</exception>
1067
+
<typeparamref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface.</exception>
1068
1068
<altmember cref="T:System.IComparable`1" />
1069
1069
<altmember cref="Overload:System.Array.Sort" />
1070
1070
<related type="Article" href="/dotnet/standard/globalization-localization/performing-culture-insensitive-string-operations-in-arrays">Performing Culture-Insensitive String Operations in Arrays</related>
@@ -1195,7 +1195,7 @@
1195
1195
1196
1196
<paramref name="comparer" /> is <see langword="null" />, and <paramref name="value" /> is of a type that is not compatible with the elements of <paramref name="array" />.</exception>
<paramref name="comparer" /> is <see langword="null" />, and <paramref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface.</exception>
1198
+
<paramref name="comparer" /> is <see langword="null" />, and <typeparamref name="T" /> does not implement the <see cref="T:System.IComparable`1" /> generic interface.</exception>
<param name="array">The one-dimensional, zero-based array to search.</param>
3476
3476
<param name="match">The predicate that defines the conditions of the element to search for.</param>
3477
3477
<summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the first occurrence within the entire <see cref="T:System.Array" />.</summary>
3478
-
<returns>The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />.</returns>
3478
+
<returns>The first element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <typeparamref name="T" />.</returns>
3479
3479
<remarks>
3480
3480
<format type="text/markdown"><![CDATA[
3481
3481
@@ -3991,7 +3991,7 @@
3991
3991
<param name="array">The one-dimensional, zero-based <see cref="T:System.Array" /> to search.</param>
3992
3992
<param name="match">The <see cref="T:System.Predicate`1" /> that defines the conditions of the element to search for.</param>
3993
3993
<summary>Searches for an element that matches the conditions defined by the specified predicate, and returns the last occurrence within the entire <see cref="T:System.Array" />.</summary>
3994
-
<returns>The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <paramref name="T" />.</returns>
3994
+
<returns>The last element that matches the conditions defined by the specified predicate, if found; otherwise, the default value for type <typeparamref name="T" />.</returns>
0 commit comments