Skip to content

Commit c32fdcc

Browse files
Rodelmairaw
authored andcommitted
Fix broken links (dotnet#2236)
* update * fixed cdata format * Update IdentityReference.xml * Update Label.xml * feedback comments * checking in changes * fix build error * fixing closing tag * additional feedback
1 parent dc5c9cd commit c32fdcc

File tree

59 files changed

+141
-143
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+141
-143
lines changed

xml/System.IO.Log/SequenceNumber.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@
211211
<returns>
212212
<see langword="true" /> if both <see cref="T:System.IO.Log.SequenceNumber" /> instances are equal; otherwise, <see langword="false" />.</returns>
213213
<remarks>
214-
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.Equals%28System.IO.Log.SequenceNumber%2CSystem.IO.Log.SequenceNumber%29?displayProperty=fullName>]]></format>
214+
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.CompareTo*?displayProperty=fullName>.]]></format>
215215
</remarks>
216216
</Docs>
217217
</Member>
@@ -238,7 +238,7 @@
238238
<returns>
239239
<see langword="true" /> if the first instance is greater than the second instance, otherwise, <see langword="false" />.</returns>
240240
<remarks>
241-
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.Compare%28System.IO.Log.SequenceNumber%2CSystem.IO.Log.SequenceNumber%29?displayProperty=fullName>]]></format>
241+
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.CompareTo*>.]]></format>
242242
</remarks>
243243
</Docs>
244244
</Member>
@@ -265,7 +265,7 @@
265265
<returns>
266266
<see langword="true" /> if the first instance is greater than or equal to the second instance, otherwise, <see langword="false" />.</returns>
267267
<remarks>
268-
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.Compare%28System.IO.Log.SequenceNumber%2CSystem.IO.Log.SequenceNumber%29?displayProperty=fullName>]]></format>
268+
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.CompareTo*>.]]></format>
269269
</remarks>
270270
</Docs>
271271
</Member>
@@ -292,7 +292,7 @@
292292
<returns>
293293
<see langword="true" /> if both <see cref="T:System.IO.Log.SequenceNumber" /> instances are not equal, otherwise, <see langword="false" />.</returns>
294294
<remarks>
295-
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.Compare%28System.IO.Log.SequenceNumber%2CSystem.IO.Log.SequenceNumber%29?displayProperty=fullName>]]></format>
295+
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.CompareTo*>.]]></format>
296296
</remarks>
297297
</Docs>
298298
</Member>
@@ -319,7 +319,7 @@
319319
<returns>
320320
<see langword="true" /> if the first instance is less than the second instance, otherwise, <see langword="false" />.</returns>
321321
<remarks>
322-
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.Compare%28System.IO.Log.SequenceNumber%2CSystem.IO.Log.SequenceNumber%29?displayProperty=fullName>]]></format>
322+
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.CompareTo*>.]]></format>
323323
</remarks>
324324
</Docs>
325325
</Member>
@@ -346,7 +346,7 @@
346346
<returns>
347347
<see langword="true" /> if the first instance is less than or equal to the second instance, otherwise, <see langword="false" />.</returns>
348348
<remarks>
349-
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.Compare%28System.IO.Log.SequenceNumber%2CSystem.IO.Log.SequenceNumber%29?displayProperty=fullName>]]></format>
349+
<format type="text/markdown"><![CDATA[The equivalent method for this operator is <xref:System.IO.Log.SequenceNumber.CompareTo*>.]]></format>
350350
</remarks>
351351
</Docs>
352352
</Member>

xml/System.IO/Stream.xml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -428,7 +428,7 @@
428428
<format type="text/markdown"><![CDATA[
429429
430430
## Remarks
431-
If a class derived from <xref:System.IO.Stream> does not support writing, a call to <xref:System.IO.Stream.Write%2A>, <xref:System.IO.Stream.BeginWrite%2A>, or <xref:System.IO.Stream.WriteByte%2A> throws a <xref:System.NotSupportedException>. In such cases, <xref:System.IO.Stream.Flush%2A> is typically implemented as an empty method to ensure full compatibility with other <xref:System.IO.Stream> types since it's valid to flush a read-only stream.
431+
If a class derived from <xref:System.IO.Stream> does not support writing, a call to <xref:System.IO.Stream.Write%2A>, <xref:System.IO.Stream.BeginWrite%2A>, or <xref:System.IO.Stream.WriteByte%2A> throws a <xref:System.NotSupportedException>.
432432
433433
If the stream is closed, this property returns `false`.
434434
@@ -1076,8 +1076,6 @@
10761076
## Remarks
10771077
Override `Flush` on streams that implement a buffer. Use this method to move any information from an underlying buffer to its destination, clear the buffer, or both. Depending upon the state of the object, you might have to modify the current position within the stream (for example, if the underlying stream supports seeking). For additional information see <xref:System.IO.Stream.CanSeek%2A>.
10781078
1079-
In a class derived from <xref:System.IO.Stream> that doesn't support writing, <xref:System.IO.Stream.Flush%2A> is typically implemented as an empty method to ensure full compatibility with other <xref:System.IO.Stream> types since it's valid to flush a read-only stream.
1080-
10811079
When using the <xref:System.IO.StreamWriter> or <xref:System.IO.BinaryWriter> class, do not flush the base <xref:System.IO.Stream> object. Instead, use the class's <xref:System.IO.Stream.Flush%2A> or <xref:System.IO.Stream.Close%2A> method, which makes sure that the data is flushed to the underlying stream first and then written to the file.
10821080
10831081
]]></format>

xml/System.IdentityModel.Metadata/MetadataSerializationException.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<format type="text/markdown"><![CDATA[
3232
3333
## Remarks
34-
This constructor initializes the <xref:SystemException.Message> property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.
34+
This constructor initializes the <xref:System.Exception.Message*> property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.
3535
3636
The following table shows the initial property values for the new instance.
3737

xml/System.IdentityModel.Selectors/X509CertificateValidator.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -290,7 +290,7 @@
290290
## Remarks
291291
Override the <xref:System.IdentityModel.Selectors.X509CertificateValidator.Validate%2A> method to specify how the X.509 certificate is validated.
292292
293-
When the X.509 certificate that is passed into the `certificate` parameter does not pass validation, throw the <xref:System.IdentityModel.Tokens.SecurityTokenvalidationException>.
293+
When the X.509 certificate that is passed into the `certificate` parameter does not pass validation, throw the <xref:System.IdentityModel.Tokens.SecurityTokenValidationException>.
294294
295295
296296

xml/System.IdentityModel.Services/AsynchronousOperationException.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
<format type="text/markdown"><![CDATA[
3232
3333
## Remarks
34-
This constructor initializes the <xref:SystemException.Message> property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.
34+
This constructor initializes the <xref:System.Exception.Message*> property of the new instance to a system-supplied message that describes the error. This message takes into account the current system culture.
3535
3636
The following table shows the initial property values for the new instance.
3737

xml/System.IdentityModel.Services/CookieHandlerElement.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
<format type="text/markdown"><![CDATA[
1717
1818
## Remarks
19-
The `<cookieHandler>` element is a child element of the `<federatedAuthentication>` element; the <xref:System.IdentityModel.Services.FederatedAuthenticationElement.CookieHandler%2A?displayProperty=fullName> property is set to an instance of the <xref:System.IdentityModel.Services.CookieHandlerElement> class. The `<cookieHandler>` element is used to configure the cookie handler used by the Session Authentication Module (SAM), which is represented by the <xref:System.IdentityModel.Services.SessionAuthenticationModule> class.
19+
The `<cookieHandler>` element is a child element of the `<federatedAuthentication>` element; the <xref:System.IdentityModel.Services.Configuration.FederationConfiguration.CookieHandler%2A?displayProperty=fullName> property is set to an instance of the <xref:System.IdentityModel.Services.CookieHandlerElement> class. The `<cookieHandler>` element is used to configure the cookie handler used by the Session Authentication Module (SAM), which is represented by the <xref:System.IdentityModel.Services.SessionAuthenticationModule> class.
2020
2121
A cookie handler can be configured in one of the following ways:
2222

xml/System.IdentityModel.Services/PseudonymRequestMessage.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@
215215
<format type="text/markdown"><![CDATA[
216216
217217
## Remarks
218-
This method calls the <xref:System.IdentityModel.Services.PseudonymReqeustMessage.Validate%2A> method before writing the message.
218+
This method calls the <xref:System.IdentityModel.Services.PseudonymRequestMessage.Validate*> method before writing the message.
219219
220220
]]></format>
221221
</remarks>

xml/System.IdentityModel.Services/WSFederationAuthenticationModule.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1852,7 +1852,7 @@
18521852
## Remarks
18531853
This event is raised through a call to the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.OnSigningOut%2A> method from inside the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.SignOut%28System.Boolean%29?displayProperty=fullName> method while signing out of the session at the relying party (RP). The event is not raised when doing federated sign-out through the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.FederatedSignOut%2A> method.
18541854
1855-
You can add an event handler to perform any additional processing that is needed by your application before the session cookie is deleted. You can read the <xref:System.IdentityModel.Services.SigningOutEventArgs.IsIPInitiated%2A> property in the event handler to determine whether the sign-out is the result of receiving a WS-Federation sign-out clean-up request message ("wsignoutcleanup1.0") from a security token service (STS) or whether it was initiated at the RP.
1855+
You can add an event handler to perform any additional processing that is needed by your application before the session cookie is deleted. You can read the <xref:System.IdentityModel.Services.SigningOutEventArgs.IsIPInitiated*> property in the event handler to determine whether the sign-out is the result of receiving a WS-Federation sign-out clean-up request message ("wsignoutcleanup1.0") from a security token service (STS) or whether it was initiated at the RP.
18561856
18571857
This event is not guaranteed to be called for every session. Cookies may be deleted at the client side, for example, so this event would never be raised.
18581858
@@ -1961,7 +1961,7 @@
19611961
## Remarks
19621962
This method performs the actual work of deleting the current session and raising the appropriate sign-out events. The method does the following:
19631963
1964-
1. Invokes the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.OnSigningOut%2A> method to raise the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.SigningOut> event. An event handler can provide any necessary processing before the session is deleted. The <xref:System.IdentityModel.Services.SigningOutEventArgs.IsIpInitiated%2A?displayProperty=fullName> property is set according to the `isIPRequest` parameter.
1964+
1. Invokes the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.OnSigningOut%2A> method to raise the <xref:System.IdentityModel.Services.WSFederationAuthenticationModule.SigningOut> event. An event handler can provide any necessary processing before the session is deleted. The <xref:System.IdentityModel.Services.SigningOutEventArgs.IsIPInitiated%2A?displayProperty=fullName> property is set according to the `isIPRequest` parameter.
19651965
19661966
2. Calls the <xref:System.IdentityModel.Services.SessionAuthenticationModule.DeleteSessionTokenCookie%2A?displayProperty=fullName> method on the current session authentication manager to delete the session cookie.
19671967

xml/System.IdentityModel.Tokens/Saml2AuthenticationContext.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@
143143
<format type="text/markdown"><![CDATA[
144144
145145
## Remarks
146-
The ClassReference element. This can be one of URI constants defined in the <xref:System.IdentityModel.Tokens.Saml2Constants.AuthenticationContextClasses> class.
146+
The ClassReference element. This can be one of URI constants defined in the [AuthenticationContextClasses](https://referencesource.microsoft.com/#System.IdentityModel/System/IdentityModel/Tokens/Saml2Constants.cs,77) class.
147147
148148
]]></format>
149149
</remarks>
@@ -177,4 +177,4 @@
177177
</Docs>
178178
</Member>
179179
</Members>
180-
</Type>
180+
</Type>

xml/System.IdentityModel.Tokens/Saml2SecurityToken.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@
9797
## Remarks
9898
For <xref:System.IdentityModel.Tokens.Saml2SecurityToken> security tokens, the claims are specified using a SAML assertion.
9999
100-
Use a constructor or the <xref:System.IdentityModel.Tokens.Saml2SecurityToken.Initialize%28System.IdentityModel.Tokens.Saml2Assertion%29> method to set the <xref:System.IdentityModel.Tokens.Saml2SecurityToken.Assertion%2A> property.
100+
Use a constructor or the <xref:System.IdentityModel.Tokens.Saml2SecurityToken.%23ctor%28System.IdentityModel.Tokens.Saml2Assertion%29?displayProperty=fullName> method to set the <xref:System.IdentityModel.Tokens.Saml2SecurityToken.Assertion%2A> property.
101101
102102
]]></format>
103103
</remarks>

0 commit comments

Comments
 (0)