GC.GetConfigurationVariables Method

Definition

Gets the configurations used by the garbage collector.

public:
 static System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ GetConfigurationVariables();
public static System.Collections.Generic.IReadOnlyDictionary<string,object> GetConfigurationVariables ();
static member GetConfigurationVariables : unit -> System.Collections.Generic.IReadOnlyDictionary<string, obj>
Public Shared Function GetConfigurationVariables () As IReadOnlyDictionary(Of String, Object)

Returns

A read-only dictionary with the configuration names and values as the keys and values of the dictionary, respectively.

Remarks

The value of these configurations don't necessarily have to be the same as the ones that are passed by the user. For example, for the GCHeapCount configuration, if the user supplies a value higher than the number of CPUs, the configuration that's used is that of the number of CPUs.

Applies to