Skip to content

Commit

Permalink
Replacing MSDN links with docs relative (dotnet#7819)
Browse files Browse the repository at this point in the history
* replace MSDN links

* replace MSDN links

* some MSDN links replacement

* fixing typo in replaced MSDN link

* Change page title after MSDN link replacement
  • Loading branch information
nemrism authored and Ron Petrusha committed Oct 3, 2018
1 parent 71d5955 commit 1e026dc
Show file tree
Hide file tree
Showing 71 changed files with 79 additions and 79 deletions.
2 changes: 1 addition & 1 deletion docs/framework/64-bit-apps.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ When you compile an application, you can specify that it should run on a Windows

- For information about how to download a 64-bit version of the CLR, see [.NET Framework Developer Center Downloads](https://go.microsoft.com/fwlink/?LinkId=50953) on the MSDN website.

- For information about Visual Studio support for creating 64-bit applications, see [Visual Studio IDE 64-Bit Support](https://msdn.microsoft.com/library/b08ff3ad-c6fd-468f-94d5-01a61aab6833).
- For information about Visual Studio support for creating 64-bit applications, see [Visual Studio IDE 64-Bit Support](/visualstudio/ide/visual-studio-ide-64-bit-support).

## Compiler Support for Creating 64-Bit Applications
By default, when you use the .NET Framework to build an application on either a 32-bit or a 64-bit computer, the application will run on a 64-bit computer as a native application (that is, not under WOW64). The following table lists documents that explain how to use Visual Studio compilers to create 64-bit applications that will run as native, under WOW64, or both.
Expand Down
2 changes: 1 addition & 1 deletion docs/framework/app-domains/assembly-placement.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,5 +18,5 @@ For most .NET Framework applications, you locate assemblies that make up an appl
## See Also
[How the Runtime Locates Assemblies](../../../docs/framework/deployment/how-the-runtime-locates-assemblies.md)
[Configuring Apps](../../../docs/framework/configure-apps/index.md)
[Advanced COM Interoperability](https://msdn.microsoft.com/library/3ada36e5-2390-4d70-b490-6ad8de92f2fb)
[Interoperating with unmanaged code](../../../docs/framework/interop/index.md)
[Assemblies in the Common Language Runtime](../../../docs/framework/app-domains/assemblies-in-the-common-language-runtime.md)
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ al /out:MyAssembly.dll MyModule.netmodule /keyfile:sgKey.snk
[Al.exe (Assembly Linker)](../../../docs/framework/tools/al-exe-assembly-linker.md)
[Delay Signing an Assembly](../../../docs/framework/app-domains/delay-sign-assembly.md)
[Managing Assembly and Manifest Signing](/visualstudio/ide/managing-assembly-and-manifest-signing)
[Signing Page, Project Designer](https://msdn.microsoft.com/library/0k50fs3b)
[Signing Page, Project Designer](/visualstudio/ide/reference/signing-page-project-designer)
Original file line number Diff line number Diff line change
Expand Up @@ -38,9 +38,9 @@ Type forwarding allows you to move a type to another assembly without having to

3. Compile the assembly that now contains the type.

4. Recompile the assembly where the type used to be located, with a reference to the assembly that now contains the type. For example, if you are compiling a C# file from the command line, use the [/reference (C# Compiler Options)](~/docs/csharp/language-reference/compiler-options/reference-compiler-option.md) option to specify the assembly that contains the type. In C++, use the [#using](https://msdn.microsoft.com/library/870b15e5-f361-40a8-ba1c-c57d75c8809a) directive in the source file to specify the assembly that contains the type.
4. Recompile the assembly where the type used to be located, with a reference to the assembly that now contains the type. For example, if you are compiling a C# file from the command line, use the [/reference (C# Compiler Options)](~/docs/csharp/language-reference/compiler-options/reference-compiler-option.md) option to specify the assembly that contains the type. In C++, use the [#using](/cpp/preprocessor/hash-using-directive-cpp) directive in the source file to specify the assembly that contains the type.

## See Also
<xref:System.Runtime.CompilerServices.TypeForwardedToAttribute>
[Type Forwarding (C++/CLI)](/cpp/windows/type-forwarding-cpp-cli)
[#using Directive](https://msdn.microsoft.com/library/870b15e5-f361-40a8-ba1c-c57d75c8809a)
[#using Directive](/cpp/preprocessor/hash-using-directive-cpp)
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ ms.assetid: 34a8688a-a32c-40d3-94be-c8e610c6a4e8
# How to: Configure Client Application Services
This topic describes how to use the Visual Studio **Project Designer** to enable and configure client application services. You can use client application services to validate users and retrieve user roles and settings from an existing [!INCLUDE[ajax_current_short](../../../includes/ajax-current-short-md.md)] application service. After configuration, you can access the enabled services in your application code as described in [Client Application Services Overview](../../../docs/framework/common-client-technologies/client-application-services-overview.md). For more information about the [!INCLUDE[ajax_current_short](../../../includes/ajax-current-short-md.md)] application services, see [ASP.NET Application Services Overview](https://msdn.microsoft.com/library/1162e529-0d70-44b2-b3ab-83e60c695013).

You can enable and configure client application services on the **Services** page of the **Project Designer**. The **Services** page updates values in your project's App.config file. To access the **Project Designer**, use the **Properties** command on the **Project** menu. For more information about the **Services** page, see [Services Page, Project Designer](https://msdn.microsoft.com/library/bb398109).
You can enable and configure client application services on the **Services** page of the **Project Designer**. The **Services** page updates values in your project's App.config file. To access the **Project Designer**, use the **Properties** command on the **Project** menu. For more information about the **Services** page, see [Services Page, Project Designer](/visualstudio/ide/reference/services-page-project-designer).

The following procedure describes how to perform basic configuration for client application services. Advanced configuration options are described in later sections.

Expand Down Expand Up @@ -137,7 +137,7 @@ This topic describes how to use the Visual Studio **Project Designer** to enable
## See Also
[Client Application Services](../../../docs/framework/common-client-technologies/client-application-services.md)
[Client Application Services Overview](../../../docs/framework/common-client-technologies/client-application-services-overview.md)
[Services Page, Project Designer](https://msdn.microsoft.com/library/bb398109)
[Services Page, Project Designer](/visualstudio/ide/reference/services-page-project-designer)
[Advanced Settings for Services Dialog Box](/visualstudio/ide/reference/advanced-settings-for-services-dialog-box)
[How to: Implement User Login with Client Application Services](../../../docs/framework/common-client-technologies/how-to-implement-user-login-with-client-application-services.md)
[Walkthrough: Using Client Application Services](../../../docs/framework/common-client-technologies/walkthrough-using-client-application-services.md)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ ms.assetid: dd31b89b-eab6-45a1-8d0b-11e0eb84b234

An image being manipulated by two manipulators

Manipulation processing provides a framework that monitors a subset of manipulators and interprets them as if they are acting together, instead of independently. You can create several manipulation processor objects simultaneously, one for each UI element to be manipulated in an application. A manipulation processor is informed of which input devices to observe and it reports manipulations through [.NET events](https://msdn.microsoft.com/library/17sde2xt.aspx).
Manipulation processing provides a framework that monitors a subset of manipulators and interprets them as if they are acting together, instead of independently. You can create several manipulation processor objects simultaneously, one for each UI element to be manipulated in an application. A manipulation processor is informed of which input devices to observe and it reports manipulations through [.NET events](../../../docs/standard/events/index.md).

A manipulation processor does not have information about the particular element that is being manipulated. An application separately applies the changes to an application-specific element. For example, an application applies transformations to an image or redraws it to display it at its new location or with a new size or orientation.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Enables or disables networking performance counters.
## Remarks
This element can be used in the application configuration file or the machine configuration file (Machine.config).

Networking performance counters need to be enabled in the configuration file to be used. All networking performance counters are enabled or disabled with a single setting in the configuration file. Individual networking performance counters cannot be enabled or disabled. For more information on the specific networking performance counters, see [Networking Performance Counters](https://msdn.microsoft.com/library/d1860235-f643-46ae-846c-ff0ed8b0e3cd).
Networking performance counters need to be enabled in the configuration file to be used. All networking performance counters are enabled or disabled with a single setting in the configuration file. Individual networking performance counters cannot be enabled or disabled. For more information on the specific networking performance counters, see [Networking Performance Counters](../../../../../docs/framework/debug-trace-profile/performance-counters.md#networking).

The default value is that networking performance counters are disabled.

Expand All @@ -73,4 +73,4 @@ Enables or disables networking performance counters.
<xref:System.Net.Configuration.PerformanceCountersElement?displayProperty=nameWithType>
<xref:System.Net.Configuration.PerformanceCountersElement.Enabled%2A?displayProperty=nameWithType>
[Network Settings Schema](../../../../../docs/framework/configure-apps/file-schema/network/index.md)
[Networking Performance Counters](https://msdn.microsoft.com/library/d1860235-f643-46ae-846c-ff0ed8b0e3cd)
[Networking Performance Counters](../../../../../docs/framework/debug-trace-profile/performance-counters.md#networking)
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ Defines one or more switches used by the <xref:System.AppContext> class to provi
|`Switch.System.Security.Cryptography.`<br/>`DoNotAddrOfCspParentWindowHandle`|Controls whether the value of the [CspParameters.ParentWindowHandle](xref:System.Security.Cryptography.CspParameters.ParentWindowHandle) property is an [IntPtr](xref:System.IntPtr) that represents the memory location of a window handle, or whether it is a window handle (an HWND). For more information, see [Mitigation: CspParameters.ParentWindowHandle Expects an HWND](Mitigation:%20CspParameters.ParentWindowHandle%20Expects%20an%20HWND.md). |.NET Framework 4.7|
|`Switch.System.Security.Cryptography.Pkcs.`<br/>`UseInsecureHashAlgorithms`|Determines whether the default for some SignedCMS operations is SHA1 or SHA256. |.NET Framework 4.7.1|
|`Switch.System.Security.Cryptography.Xml.`<br/>`UseInsecureHashAlgorithms`|Determines whether the default for some SignedXML operations is SHA1 or SHA256. |.NET Framework 4.7.1|
|`Switch.System.ServiceModel.`<br/>`AllowUnsignedToHeader`|Determines whether the `TransportWithMessageCredential` security mode allows messages with an unsigned "to" header. This is an opt-in switch. For more information, see [Runtime Changes in the .NET Framework 4.6.1](https://msdn.microsoft.com/library/mt592686.aspx#WCF).|.NET Framework 4.6.1|
|`Switch.System.ServiceModel.`<br/>`AllowUnsignedToHeader`|Determines whether the `TransportWithMessageCredential` security mode allows messages with an unsigned "to" header. This is an opt-in switch. For more information, see [Runtime Changes in the .NET Framework 4.6.1](~/docs/framework/migration-guide/runtime/4.5.2-4.6.1.md#windows-communication-foundation-wcf).|.NET Framework 4.6.1|
|`Switch.System.ServiceModel.`<br/>`DisableAddressHeaderCollectionValidation`>|Controls whether the <xref:System.ServiceModel.Channels.AddressHeaderCollection.%23ctor(System.Collections.Generic.IEnumerable{System.ServiceModel.Channels.AddressHeader})> constructor throws an <xref:System.ArgumentException> if one of the elements is `null`.|.NET Framework 4.7.1|
|`Switch.System.ServiceModel.`<br />`DisableCngCertificates`|Determines whether the attempt to use X509 certificates with a CSG key storage provider throws an exception. For more information, see [WCF transport security supports certificates stored using CNG](~/docs/framework/migration-guide/retargeting/4.6.1-4.6.2.md#wcf-transport-security-supports-certificates-stored-using-cng).|.NET Framework 4.6.1|
|`Switch.System.ServiceModel.`<br/>`DisableExplicitConnectionCloseHeader`|When using the HTTP transport with a self-hosted service, setting this value to `true` causes WCF to ignore an application adding the `Connection: close` header to the response headers for a request. Setting this value to `false` enables adding the `Connection: close` header to the response headers, which results in closing the request socket after a response has been sent.|.NET Framework 4.6|
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,5 +73,5 @@ Specifies that an application can reference the same assembly in two different i
```

## See Also
[/appconfig (C# Compiler Options)](https://msdn.microsoft.com/library/ee523958.aspx)
[/appconfig (C# Compiler Options)](../../../../../docs/csharp/language-reference/compiler-options/appconfig-compiler-option.md)
[.NET Framework Assembly Unification Overview](https://msdn.microsoft.com/library/8d8cc65e-031d-463b-bde3-2c6dc2e3bc48)
Original file line number Diff line number Diff line change
Expand Up @@ -177,5 +177,5 @@ Represents a binding that a Windows Communication Foundation (WCF) service can u
<xref:System.ServiceModel.Configuration.BasicHttpBindingElement>
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,6 @@ Specifying a binding that provides context for the <xref:System.ServiceModel.Bas
<xref:System.ServiceModel.Channels.ContextBindingElement>
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
[\<basicHttpBinding>](../../../../../docs/framework/configure-apps/file-schema/wcf/basichttpbinding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -300,4 +300,4 @@ Provides full control over the messaging stack for the user.
[customBinding Element](../../../../../docs/framework/configure-apps/file-schema/wcf/custombinding.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
Original file line number Diff line number Diff line change
Expand Up @@ -82,5 +82,5 @@ Defines the type of message-level security requirements for an endpoint configur
[Securing Services and Clients](../../../../../docs/framework/wcf/feature-details/securing-services-and-clients.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,5 @@ Defines settings for the message-level security for the [\<ws2007FederationHttpB
[Securing Services and Clients](../../../../../docs/framework/wcf/feature-details/securing-services-and-clients.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -130,5 +130,5 @@ Defines the settings for the message-level security for the [\<wsFederationHttpB
[Securing Services and Clients](../../../../../docs/framework/wcf/feature-details/securing-services-and-clients.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -127,5 +127,5 @@ Defines the settings for message-level security of the [\<basicHttpBinding>](../
[Securing Services and Clients](../../../../../docs/framework/wcf/feature-details/securing-services-and-clients.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,5 @@ Defines the settings for message-level security of the [\<basicHttpBinding>](../
[Securing Services and Clients](../../../../../docs/framework/wcf/feature-details/securing-services-and-clients.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Original file line number Diff line number Diff line change
Expand Up @@ -54,5 +54,5 @@ Defines the SOAP message security settings on this `netMsmqBinding` binding.
[Securing Services and Clients](../../../../../docs/framework/wcf/feature-details/securing-services-and-clients.md)
[Bindings](../../../../../docs/framework/wcf/bindings.md)
[Configuring System-Provided Bindings](../../../../../docs/framework/wcf/feature-details/configuring-system-provided-bindings.md)
[Using Bindings to Configure Windows Communication Foundation Services and Clients](https://msdn.microsoft.com/library/bd8b277b-932f-472f-a42a-b02bb5257dfb)
[Using Bindings to Configure Services and Clients](../../../../../docs/framework/wcf/using-bindings-to-configure-services-and-clients.md)
[\<binding>](../../../../../docs/framework/misc/binding.md)
Loading

0 comments on commit 1e026dc

Please sign in to comment.