Skip to content

Commit 63734c6

Browse files
authored
Fix xref links (#4535)
* xref fixes
1 parent e1c9553 commit 63734c6

File tree

7 files changed

+16
-18
lines changed

7 files changed

+16
-18
lines changed

xml/System.Activities.Statements/Delay.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,9 +25,7 @@
2525
<format type="text/markdown"><![CDATA[
2626
2727
## Remarks
28-
When the activity's timer expires, the <xref:System.Activities.Statements.Delay> activity completes its execution. If a workflow instance persists while a <xref:System.Activities.Statements.Delay> activity has an outstanding timer, then an <xref:System.ServiceModel.Activities.Description.ITimerExpiredNotification> standard endpoint must be configured to receive notification that the timer has expired.
29-
30-
28+
When the activity's timer expires, the <xref:System.Activities.Statements.Delay> activity completes its execution.
3129
3230
## Examples
3331
The following code sample demonstrates creating a <xref:System.Activities.Statements.Delay> activity. This example is from the [Using the Pick Activity](/dotnet/framework/windows-workflow-foundation/samples/using-the-pick-activity) sample.

xml/System.Activities/BookmarkScopeHandle.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
</Attribute>
2121
</Attributes>
2222
<Docs>
23-
<summary>A <see cref="T:System.Handle" /> used to manage the lifetime of a <see cref="T:System.Activities.BookmarkScope" />.</summary>
23+
<summary>A <see cref="T:System.Activities.Handle" /> used to manage the lifetime of a <see cref="T:System.Activities.BookmarkScope" />.</summary>
2424
<remarks>To be added.</remarks>
2525
</Docs>
2626
<Members>

xml/System.Data.Metadata.Edm/BuiltInTypeKind.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -645,7 +645,7 @@
645645
</ReturnValue>
646646
<MemberValue>29</MemberValue>
647647
<Docs>
648-
<summary>An enumeration member that indicates the <see cref="T:System.Data.Metadata.Edm.ProviderManifest" /> type.</summary>
648+
<summary>An enumeration member that indicates the <see langword="ProviderManifest" /> type.</summary>
649649
</Docs>
650650
</Member>
651651
<Member MemberName="ReferentialConstraint">

xml/System.Device.Location/GeoCoordinate.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<AssemblyVersion>4.0.0.0</AssemblyVersion>
2929
</AssemblyInfo>
3030
<Docs>
31-
<summary>Initializes a new instance of <see cref="T:System.Device.Location.GeoCoordinate." /></summary>
31+
<summary>Initializes a new instance of <see cref="T:System.Device.Location.GeoCoordinate" />.</summary>
3232
</Docs>
3333
</MemberGroup>
3434
<Member MemberName=".ctor">

xml/System.Net.Http/ReadOnlyMemoryContent.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
</Base>
2424
<Interfaces />
2525
<Docs>
26-
<summary>Provides HTTP content based on a <see cref="T:System.ReadOnlyMemory&lt;System.Byte&gt;" />.</summary>
26+
<summary>Provides HTTP content based on a <see cref="T:System.ReadOnlyMemory`1" />.</summary>
2727
<remarks>To be added.</remarks>
2828
</Docs>
2929
<Members>

xml/System.Net.Security/SslStream.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1350,7 +1350,7 @@
13501350
]]></format>
13511351
</remarks>
13521352
<exception cref="T:System.ArgumentNullException">
1353-
Either <see cref="P:System.Net.Security.SslServerAuthenticationOptions.ServerCertificateSelectionCallback" /> or <see cref="P:System.Net.Security.SslServerAuthenticationOptions.ServerCertificate" /> is <see langword="null" /> and <see cref="T:System.Net.Security.LocalCertificateSelectionCallback" /> is not set in the <see cref="M:System.Net.Security.SslStream.#ctor" /> constructor.</exception>
1353+
Either <see cref="P:System.Net.Security.SslServerAuthenticationOptions.ServerCertificateSelectionCallback" /> or <see cref="P:System.Net.Security.SslServerAuthenticationOptions.ServerCertificate" /> is <see langword="null" /> and <see cref="T:System.Net.Security.LocalCertificateSelectionCallback" /> is not set in the <see langword="SslStream" /> constructor.</exception>
13541354
<exception cref="T:System.ArgumentNullException">
13551355
<paramref name="sslServerAuthenticationOptions" /> is <see langword="null" />.</exception>
13561356
<exception cref="T:System.Security.Authentication.AuthenticationException">The authentication failed and left this object in an unusable state.</exception>

xml/System.Net/WebClient.xml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1612,18 +1612,18 @@
16121612
For more information about how to handle events, see [Handling and Raising Events](/dotnet/standard/events/).
16131613

16141614
> [!NOTE]
1615-
> A passive FTP file transfer will always show a progress percentage of zero, since the server did not send the file size. To show progress, you can change the FTP connection to active by overriding the <xref:System.Net.WebClient.GetWebRequest%2A> virtual method:
1615+
> A passive FTP file transfer will always show a progress percentage of zero, since the server did not send the file size. To show progress, you can change the FTP connection to active by overriding the <xref:System.Web.Services.Protocols.WebClientProtocol.GetWebRequest(System.Uri)> virtual method:
16161616

1617-
```csharp
1618-
internal class MyWebClient : WebClient
1619-
{
1617+
```csharp
1618+
internal class MyWebClient : WebClientProtocol
1619+
{
16201620
protected override WebRequest GetWebRequest(Uri address)
1621-
{
1622-
FtpWebRequest req = (FtpWebRequest)base.GetWebRequest(address);
1623-
req.UsePassive = false;
1624-
return req;
1625-
}
1626-
}
1621+
{
1622+
FtpWebRequest req = (FtpWebRequest)base.GetWebRequest(address);
1623+
req.UsePassive = false;
1624+
return req;
1625+
}
1626+
}
16271627
```
16281628

16291629
## Examples

0 commit comments

Comments
 (0)