Click to Rate and Give Feedback
MSDN
MSDN Library
.NET Development
.NET Framework 3.5
  Element
This page is specific to
Microsoft Visual Studio 2008/.NET Framework 3.5

Other versions are also available for the following:
.NET Framework General Reference
<gcConcurrent> Element

Specifies whether the common language runtime runs garbage collection on a separate thread.

<configuration> Element
  <runtime> Element
    <gcConcurrent> Element
<gcConcurrent  
   enabled="true|false"/>

The following sections describe attributes, child elements, and parent elements.

Attributes

Attribute

Description

enabled

Required attribute.

Specifies whether the runtime runs garbage collection concurrently.

Enabled Attribute

Value

Description

false

Does not run garbage collection concurrently.

true

Runs garbage collection concurrently. This is the default.

Child Elements

None.

Parent Elements

Element

Description

configuration

The root element in every configuration file used by the common language runtime and .NET Framework applications.

runtime

Contains information about assembly binding and garbage collection.

The setting in the machine configuration file is the default for all .NET Framework applications. The application configuration file setting overrides the machine configuration file setting.

If your application is single-threaded and involves heavy user interaction, leave concurrent garbage collection enabled to minimize the application's pause time to perform garbage collection. If your application is an ASP.NET server application you do not need to alter the default value of the gcConcurrent element.

The following example shows how to disable garbage collection.

<configuration>
   <runtime>
      <gcConcurrent enabled="false"/>
   </runtime>
</configuration>
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content      
Processing
© 2008 Microsoft Corporation. All rights reserved. Terms of Use  |  Trademarks  |  Privacy Statement
Page view tracker