Skip to content

Commit 658d3ff

Browse files
KissakiBillWagner
authored andcommitted
Upgrade links to https and fix msdn link captions (#3420)
* Upgrade go.microsoft.com links to https Contributes to #1200 * Upgrade rfc-editor.org link to https Contributes to #1200 * Upgrade go2.microsoft.com links to https Contributes to #1200 * Fix msdn.microsoft.com link names to be https The msdn.microsoft.com links have been changed to https, but the link names have not been adjusted accordingly. This change corrects that. With this change the link name matches the href again. Contributes to #1200
1 parent f673a5b commit 658d3ff

File tree

62 files changed

+114
-114
lines changed

Some content is hidden

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

62 files changed

+114
-114
lines changed

xml/System.CodeDom.Compiler/CompilerParameters.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -393,7 +393,7 @@
393393
</AssemblyInfo>
394394
<Attributes>
395395
<Attribute FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;xamarinmac-3.0;netframework-4.8">
396-
<AttributeName>System.Obsolete("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")</AttributeName>
396+
<AttributeName>System.Obsolete("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see https://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")</AttributeName>
397397
</Attribute>
398398
</Attributes>
399399
<ReturnValue>

xml/System.CodeDom.Compiler/CompilerResults.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@
204204
<AttributeName>System.Obsolete</AttributeName>
205205
</Attribute>
206206
<Attribute FrameworkAlternate="netframework-4.0;netframework-4.5;netframework-4.5.1;netframework-4.5.2;netframework-4.6;netframework-4.6.1;netframework-4.6.2;netframework-4.7;netframework-4.7.1;netframework-4.7.2;netframework-4.8">
207-
<AttributeName>System.Obsolete("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see http://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")</AttributeName>
207+
<AttributeName>System.Obsolete("CAS policy is obsolete and will be removed in a future release of the .NET Framework. Please see https://go2.microsoft.com/fwlink/?LinkId=131738 for more information.")</AttributeName>
208208
</Attribute>
209209
</Attributes>
210210
<ReturnValue>

xml/System.ComponentModel/Win32Exception.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
<format type="text/markdown"><![CDATA[
4848
4949
## Remarks
50-
Win32 error codes are translated from their numeric representations into a system message when they are displayed. Use <xref:System.ComponentModel.Win32Exception.NativeErrorCode%2A> to access the numeric representation of the error code associated with this exception. For more information about the error codes, see "Win32 Error Codes" in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
50+
Win32 error codes are translated from their numeric representations into a system message when they are displayed. Use <xref:System.ComponentModel.Win32Exception.NativeErrorCode%2A> to access the numeric representation of the error code associated with this exception. For more information about the error codes, see "Win32 Error Codes" in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
5151
5252
5353

xml/System.Diagnostics/EventInstance.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@
3737
3838
Create the new event source during the installation of your application. This allows time for the operating system to refresh its list of registered event sources and their configurations. If the operating system has not refreshed its list of event sources, and you attempt to write an event with the new source, the write operation will fail. You can configure a new source using an <xref:System.Diagnostics.EventLogInstaller>, or using the <xref:System.Diagnostics.EventLog.CreateEventSource%2A> method. You must have administrative rights on the computer to create a new event source.
3939
40-
For details about defining event messages and building event log resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com).
40+
For details about defining event messages and building event log resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com).
4141
4242
4343
@@ -565,7 +565,7 @@ SVC_UPDATE.EXE
565565
566566
Event categories are optional. If your application does not use categories, do not set the <xref:System.Diagnostics.EventInstance.CategoryId%2A> for the event log entry.
567567
568-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/). For details about defining event categories in resource files, see the "Event Categories" topic in the Platform SDK
568+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/). For details about defining event categories in resource files, see the "Event Categories" topic in the Platform SDK
569569
570570
571571
@@ -898,7 +898,7 @@ SVC_UPDATE.EXE
898898
## Remarks
899899
The <xref:System.Diagnostics.EventInstance.InstanceId%2A> property uniquely identifies an event entry for a configured event source. For events defined in message resource files, the <xref:System.Diagnostics.EventInstance.InstanceId%2A> corresponds to the resource identifier compiled from the message definition fields in the message text file. Your application can write localized event log entries by setting the <xref:System.Diagnostics.EventInstance.InstanceId%2A> to a resource identifier. The Event Viewer uses the <xref:System.Diagnostics.EventInstance.InstanceId%2A> resource identifier to find and display the corresponding string from the localized resource file based on current language settings. You must register the source with the corresponding resource file before you write events using resource identifiers.
900900
901-
For details about defining event messages and building event log resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/). For details about event log identifiers, see the "Event Identifiers" topic in the Platform SDK.
901+
For details about defining event messages and building event log resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/). For details about event log identifiers, see the "Event Identifiers" topic in the Platform SDK.
902902
903903
904904

xml/System.Diagnostics/EventLogEntry.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@
433433
434434
If the application wrote the event entry using one of the <xref:System.Diagnostics.EventLog.WriteEntry%2A> methods, the <xref:System.Diagnostics.EventLogEntry.InstanceId%2A> property matches the optional `eventId` parameter. If the application wrote the event using <xref:System.Diagnostics.EventLog.WriteEvent%2A>, the <xref:System.Diagnostics.EventLogEntry.InstanceId%2A> property matches the resource identifier specified in the <xref:System.Diagnostics.EventInstance.InstanceId%2A> of the `instance` parameter. If the application wrote the event using the Windows API `ReportEvent`, the <xref:System.Diagnostics.EventLogEntry.InstanceId%2A> property matches the resource identifier specified in the `dwEventID` parameter.
435435
436-
For details about defining event messages and building event log resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/). For details about event log identifiers, see the "Event Identifiers" topic in the Platform SDK.
436+
For details about defining event messages and building event log resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/). For details about event log identifiers, see the "Event Identifiers" topic in the Platform SDK.
437437
438438
439439

xml/System.Diagnostics/EventLogInstaller.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@
117117
118118
Event categories are optional; if your application does not use categories, do not set the <xref:System.Diagnostics.EventLogInstaller.CategoryCount%2A> and <xref:System.Diagnostics.EventLogInstaller.CategoryResourceFile%2A> properties.
119119
120-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
120+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
121121
122122
123123
@@ -292,7 +292,7 @@ SVC_UPDATE.EXE
292292
293293
Event categories are optional; if your application does not use categories, do not set the <xref:System.Diagnostics.EventLogInstaller.CategoryCount%2A> and <xref:System.Diagnostics.EventLogInstaller.CategoryResourceFile%2A> properties.
294294
295-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
295+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
296296
297297
298298
@@ -645,7 +645,7 @@ SVC_UPDATE.EXE
645645
646646
If the <xref:System.Diagnostics.EventLog.MachineName%2A> property is not the local computer identifier ("."), the .NET Framework assumes that the resource file is on a remote computer. If the <xref:System.Diagnostics.EventLogInstaller.MessageResourceFile%2A> property value contains a drive letter, the resource file is assumed to be on the \\\\<machinename\>\\<drive\>$ share (for example, \\\server\c$). If the value contains the string %systemroot%, the resource file is assumed to be on the \\\\<machinename\>\admin$ share (for example, \\\server\admin$).
647647
648-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
648+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
649649
650650
651651
@@ -845,7 +845,7 @@ TRIGGER.EXE
845845
846846
If your application writes event message strings directly to the event log, or if your <xref:System.Diagnostics.EventLogInstaller.MessageResourceFile%2A> does not contain messages with parameter insertion placeholders, do not set the <xref:System.Diagnostics.EventLogInstaller.ParameterResourceFile%2A> property.
847847
848-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
848+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
849849
850850
851851

xml/System.Diagnostics/EventSourceCreationData.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ SVC_UPDATE.EXE
275275
276276
Event categories are optional; if your application does not use categories, do not set the <xref:System.Diagnostics.EventSourceCreationData.CategoryCount%2A> and <xref:System.Diagnostics.EventSourceCreationData.CategoryResourceFile%2A> properties.
277277
278-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
278+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
279279
280280
281281
@@ -448,7 +448,7 @@ SVC_UPDATE.EXE
448448
449449
Event categories are optional; if your application does not use categories, do not set the <xref:System.Diagnostics.EventSourceCreationData.CategoryCount%2A> and <xref:System.Diagnostics.EventSourceCreationData.CategoryResourceFile%2A> properties.
450450
451-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
451+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
452452
453453
454454
@@ -742,7 +742,7 @@ SVC_UPDATE.EXE
742742
743743
If your application writes event message strings directly, rather than using a resource identifier in a localized resource file, do not set the <xref:System.Diagnostics.EventSourceCreationData.MessageResourceFile%2A> property.
744744
745-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
745+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
746746
747747
748748
@@ -939,7 +939,7 @@ TRIGGER.EXE
939939
940940
If your application writes event message strings directly to the event log, or if your <xref:System.Diagnostics.EventSourceCreationData.MessageResourceFile%2A> property does not contain messages with parameter insertion placeholders, do not set the <xref:System.Diagnostics.EventSourceCreationData.ParameterResourceFile%2A> property.
941941
942-
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [http://msdn.microsoft.com](https://msdn.microsoft.com/).
942+
For details about defining event messages and building event resource files, see the "Message Compiler" topic in the Platform SDK documentation at [https://msdn.microsoft.com](https://msdn.microsoft.com/).
943943
944944
945945

xml/System.DirectoryServices.ActiveDirectory/ActiveDirectorySchemaClass.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -396,8 +396,8 @@
396396
<ReturnType>System.String</ReturnType>
397397
</ReturnValue>
398398
<Docs>
399-
<summary>Gets the ldapDisplayName of the <see cref="T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass" /> object. For more information, see the topic [LDAP-Display-Name](https://msdn.microsoft.com/library/default.asp?url=/library/adschema/adschema/a_ldapdisplayname.asp) in the MSDN Library at [http://msdn.microsoft.com](https://msdn.microsoft.com/).</summary>
400-
<value>A <see cref="T:System.String" /> that contains the ldapDisplayName of the <see cref="T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass" /> object. For more information, see the topic [LDAP-Display-Name](https://msdn.microsoft.com/library/default.asp?url=/library/adschema/adschema/a_ldapdisplayname.asp) in the MSDN Library at [http://msdn.microsoft.com](https://msdn.microsoft.com/).</value>
399+
<summary>Gets the ldapDisplayName of the <see cref="T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass" /> object. For more information, see the topic [LDAP-Display-Name](https://msdn.microsoft.com/library/default.asp?url=/library/adschema/adschema/a_ldapdisplayname.asp) in the MSDN Library at [https://msdn.microsoft.com](https://msdn.microsoft.com/).</summary>
400+
<value>A <see cref="T:System.String" /> that contains the ldapDisplayName of the <see cref="T:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass" /> object. For more information, see the topic [LDAP-Display-Name](https://msdn.microsoft.com/library/default.asp?url=/library/adschema/adschema/a_ldapdisplayname.asp) in the MSDN Library at [https://msdn.microsoft.com](https://msdn.microsoft.com/).</value>
401401
<remarks>To be added.</remarks>
402402
<altmember cref="M:System.DirectoryServices.ActiveDirectory.ActiveDirectorySchemaClass.Save" />
403403
</Docs>

xml/System.DirectoryServices/ActiveDirectoryRights.xml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -157,7 +157,7 @@
157157
</ReturnValue>
158158
<MemberValue>256</MemberValue>
159159
<Docs>
160-
<summary>A customized control access right. For a list of possible extended rights, see the topic "Extended Rights" in the MSDN Library at [http://msdn.microsoft.com](https://msdn.microsoft.com/). For more information about extended rights, see the topic "Control Access Rights" in the MSDN Library at [http://msdn.microsoft.com](https://msdn.microsoft.com/).</summary>
160+
<summary>A customized control access right. For a list of possible extended rights, see the topic "Extended Rights" in the MSDN Library at [https://msdn.microsoft.com](https://msdn.microsoft.com/). For more information about extended rights, see the topic "Control Access Rights" in the MSDN Library at [https://msdn.microsoft.com](https://msdn.microsoft.com/).</summary>
161161
</Docs>
162162
</Member>
163163
<Member MemberName="GenericAll">
@@ -267,7 +267,7 @@
267267
</ReturnValue>
268268
<MemberValue>4</MemberValue>
269269
<Docs>
270-
<summary>The right to list children of this object. For more information about this right, see the topic "Controlling Object Visibility" in the MSDN Library [http://msdn.microsoft.com/library](https://msdn.microsoft.com/library).</summary>
270+
<summary>The right to list children of this object. For more information about this right, see the topic "Controlling Object Visibility" in the MSDN Library [https://msdn.microsoft.com/library](https://msdn.microsoft.com/library).</summary>
271271
</Docs>
272272
</Member>
273273
<Member MemberName="ListObject">
@@ -289,7 +289,7 @@
289289
</ReturnValue>
290290
<MemberValue>128</MemberValue>
291291
<Docs>
292-
<summary>The right to list a particular object. For more information about this right, see the topic "Controlling Object Visibility" in the MSDN Library at [http://msdn.microsoft.com/library](https://msdn.microsoft.com/library).</summary>
292+
<summary>The right to list a particular object. For more information about this right, see the topic "Controlling Object Visibility" in the MSDN Library at [https://msdn.microsoft.com/library](https://msdn.microsoft.com/library).</summary>
293293
</Docs>
294294
</Member>
295295
<Member MemberName="ReadControl">

xml/System.DirectoryServices/AuthenticationTypes.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ LDAP://CN=jsmith,DC=fabrikam,DC=Com
136136
</ReturnValue>
137137
<MemberValue>32</MemberValue>
138138
<Docs>
139-
<summary>Specifies that ADSI will not attempt to query the Active Directory Domain Services objectClass property. Therefore, only the base interfaces that are supported by all ADSI objects will be exposed. Other interfaces that the object supports will not be available. A user can use this option to boost the performance in a series of object manipulations that involve only methods of the base interfaces. However, ADSI does not verify if any of the request objects actually exist on the server. For more information, see the topic "Fast Binding Option for Batch Write/Modify Operations" in the MSDN Library at [http://msdn.microsoft.com/library](https://msdn.microsoft.com/library). For more information about the objectClass property, see the "Object-Class" topic in the MSDN Library at [http://msdn.microsoft.com/library](https://msdn.microsoft.com/library).</summary>
139+
<summary>Specifies that ADSI will not attempt to query the Active Directory Domain Services objectClass property. Therefore, only the base interfaces that are supported by all ADSI objects will be exposed. Other interfaces that the object supports will not be available. A user can use this option to boost the performance in a series of object manipulations that involve only methods of the base interfaces. However, ADSI does not verify if any of the request objects actually exist on the server. For more information, see the topic "Fast Binding Option for Batch Write/Modify Operations" in the MSDN Library at [https://msdn.microsoft.com/library](https://msdn.microsoft.com/library). For more information about the objectClass property, see the "Object-Class" topic in the MSDN Library at [https://msdn.microsoft.com/library](https://msdn.microsoft.com/library).</summary>
140140
</Docs>
141141
</Member>
142142
<Member MemberName="None">

0 commit comments

Comments
 (0)