Skip to content

Commit de03a63

Browse files
authored
remove broken links (#5329)
1 parent c27cbbe commit de03a63

File tree

5 files changed

+5
-17
lines changed

5 files changed

+5
-17
lines changed

xml/System.Collections.Generic/List`1.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@
122122
It is to your advantage to use the type-specific implementation of the <xref:System.Collections.Generic.List%601> class instead of using the <xref:System.Collections.ArrayList> class or writing a strongly typed wrapper collection yourself. The reason is your implementation must do what the .NET Framework does for you already, and the common language runtime can share Microsoft intermediate language code and metadata, which your implementation cannot.
123123
124124
## F# Considerations
125-
The <xref:System.Collections.Generic.List%601> class is used infrequently in F# code. Instead, [Lists](/dotnet/fsharp/language-reference/lists), which are immutable, singly-linked lists, are typically preferred. An F# List provides an ordered, immutable series of values, and is supported for use in functional-style development. When used from F#, the <xref:System.Collections.Generic.List%601> class is typically referred to by the [ResizeArray\<'T>](https://fsharp.github.io/fsharp-core-docs/reference/fsharp-collections-resizearray-1.html) type abbreviation to avoid naming conflicts with F# Lists.
125+
The <xref:System.Collections.Generic.List%601> class is used infrequently in F# code. Instead, [Lists](/dotnet/fsharp/language-reference/lists), which are immutable, singly-linked lists, are typically preferred. An F# `List` provides an ordered, immutable series of values, and is supported for use in functional-style development. When used from F#, the <xref:System.Collections.Generic.List%601> class is typically referred to by the `ResizeArray<'T>` type abbreviation to avoid naming conflicts with F# Lists.
126126
127127
## Examples
128128

xml/System.Web.Security/ActiveDirectoryMembershipProvider.xml

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -98,11 +98,7 @@
9898
|connectionProtection setting|Expected ADAM port|
9999
|----------------------------------|------------------------|
100100
|<xref:System.Web.Security.ActiveDirectoryConnectionProtection.None>|389|
101-
|`Secure`|636|
102-
103-
If your ADAM server is not using the default ports, see article Q817583, "Active Directory Services does not request secure authorization over an SSL connection," in the [Microsoft Knowledge Base](https://go.microsoft.com/fwlink/?linkid=37115).
104-
105-
101+
|`Secure`|636|
106102
107103
## Examples
108104
The following code examples show the Web.config file for an ASP.NET application configured to use an <xref:System.Web.Security.ActiveDirectoryMembershipProvider> instance. The first example uses the default mappings for Active Directory attributes, and does not support password-reset security with question-and-answer nor the ability to call search methods. The second example shows all the attribute settings allowed for an <xref:System.Web.Security.ActiveDirectoryMembershipProvider> instance.

xml/System.Xml.XPath/XPathExpression.xml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,6 @@ expression.AddSort("@ISBN", (IComparer)isbn);
307307
<altmember cref="T:System.Globalization.CultureInfo" />
308308
<altmember cref="Overload:System.String.Compare" />
309309
<altmember cref="M:System.Xml.XPath.XPathExpression.SetContext(System.Xml.XmlNamespaceManager)" />
310-
<related type="ExternalDocumentation" href="https://go.microsoft.com/fwlink/?LinkId=148089">Namespace Prefix in String Passed to XPathExpression.AddSort</related>
311310
</Docs>
312311
</Member>
313312
<Member MemberName="Clone">

xml/System/InvalidProgramException.xml

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,9 @@
5757
<format type="text/markdown"><![CDATA[
5858
5959
## Remarks
60-
<xref:System.InvalidProgramException> uses the HRESULT COR_E_INVALIDPROGRAM, which has the value 0x8013153A.
60+
<xref:System.InvalidProgramException> uses the HRESULT `COR_E_INVALIDPROGRAM`, which has the value 0x8013153A.
6161
62-
For a list of initial property values for an instance of <xref:System.InvalidProgramException>, see the <xref:System.InvalidProgramException> constructors.
63-
64-
For more information about <xref:System.InvalidProgramException>, see article [Q312544 You may receive an "InvalidProgramException" error message when you run a Microsoft .NET-connected program](https://support.microsoft.com/help/312544/you-may-receive-an-invalidprogramexception-error-message-when-you-run) in the Microsoft Support website.
62+
For a list of initial property values for an instance of <xref:System.InvalidProgramException>, see the <xref:System.InvalidProgramException> constructors.
6563
6664
]]></format>
6765
</remarks>

xml/System/TimeSpan.xml

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4188,12 +4188,7 @@ This member is an explicit interface member implementation. It can be used only
41884188
|"*hh*"|The number of hours in the time interval, ranging from 0 to 23.|
41894189
|"*mm*"|The number of minutes in the time interval, ranging from 0 to 59.|
41904190
|"*ss*"|The number of seconds in the time interval, ranging from 0 to 59.|
4191-
|"*fffffff*"|Fractional seconds in the time interval. This element is omitted if the time interval does not include fractional seconds. If present, fractional seconds are always expressed using seven decimal digits.|
4192-
4193-
> [!NOTE]
4194-
> For more information about comparing the string representation of <xref:System.TimeSpan> and Oracle data types, see Knowledge Base article [324577: System.TimeSpan Does Not Match Oracle 9i INTERVAL DAY TO SECOND Data Type](https://go.microsoft.com/fwlink/?LinkId=161146).
4195-
4196-
4191+
|"*fffffff*"|Fractional seconds in the time interval. This element is omitted if the time interval does not include fractional seconds. If present, fractional seconds are always expressed using seven decimal digits.|
41974192
41984193
## Examples
41994194
The following example displays the strings returned by calling the <xref:System.TimeSpan.ToString%2A> method with a number of <xref:System.TimeSpan> values. Note that although the example does not call the <xref:System.TimeSpan.ToString%2A> method directly, it is called by the <xref:System.Console.WriteLine%2A?displayProperty=nameWithType> method when it attempts to convert a <xref:System.TimeSpan> value to its string representation.

0 commit comments

Comments
 (0)