GC.GetConfigurationVariables Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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.