diff --git a/xml/System.Collections.Generic/List`1.xml b/xml/System.Collections.Generic/List`1.xml index 4618e655055..fb985eb249a 100644 --- a/xml/System.Collections.Generic/List`1.xml +++ b/xml/System.Collections.Generic/List`1.xml @@ -122,7 +122,7 @@ It is to your advantage to use the type-specific implementation of the class instead of using the 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. ## F# Considerations - The 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 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. + The 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 class is typically referred to by the `ResizeArray<'T>` type abbreviation to avoid naming conflicts with F# Lists. ## Examples diff --git a/xml/System.Web.Security/ActiveDirectoryMembershipProvider.xml b/xml/System.Web.Security/ActiveDirectoryMembershipProvider.xml index 7a2ec9764e1..8ce87261457 100644 --- a/xml/System.Web.Security/ActiveDirectoryMembershipProvider.xml +++ b/xml/System.Web.Security/ActiveDirectoryMembershipProvider.xml @@ -98,11 +98,7 @@ |connectionProtection setting|Expected ADAM port| |----------------------------------|------------------------| ||389| -|`Secure`|636| - - 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). - - +|`Secure`|636| ## Examples The following code examples show the Web.config file for an ASP.NET application configured to use an 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 instance. diff --git a/xml/System.Xml.XPath/XPathExpression.xml b/xml/System.Xml.XPath/XPathExpression.xml index 740d8f437ba..14388965fcf 100644 --- a/xml/System.Xml.XPath/XPathExpression.xml +++ b/xml/System.Xml.XPath/XPathExpression.xml @@ -307,7 +307,6 @@ expression.AddSort("@ISBN", (IComparer)isbn); - Namespace Prefix in String Passed to XPathExpression.AddSort diff --git a/xml/System/InvalidProgramException.xml b/xml/System/InvalidProgramException.xml index 83c4067aab8..ec116e14c97 100644 --- a/xml/System/InvalidProgramException.xml +++ b/xml/System/InvalidProgramException.xml @@ -57,11 +57,9 @@ uses the HRESULT COR_E_INVALIDPROGRAM, which has the value 0x8013153A. + uses the HRESULT `COR_E_INVALIDPROGRAM`, which has the value 0x8013153A. - For a list of initial property values for an instance of , see the constructors. - - For more information about , 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. + For a list of initial property values for an instance of , see the constructors. ]]> diff --git a/xml/System/TimeSpan.xml b/xml/System/TimeSpan.xml index 41d0f929a2b..911ba1ba0b5 100644 --- a/xml/System/TimeSpan.xml +++ b/xml/System/TimeSpan.xml @@ -4188,12 +4188,7 @@ This member is an explicit interface member implementation. It can be used only |"*hh*"|The number of hours in the time interval, ranging from 0 to 23.| |"*mm*"|The number of minutes in the time interval, ranging from 0 to 59.| |"*ss*"|The number of seconds in the time interval, ranging from 0 to 59.| -|"*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.| - -> [!NOTE] -> For more information about comparing the string representation of 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). - - +|"*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.| ## Examples The following example displays the strings returned by calling the method with a number of values. Note that although the example does not call the method directly, it is called by the method when it attempts to convert a value to its string representation.