GetRuntimeObject Method
.NET Framework Class Library
ConfigurationSection..::.GetRuntimeObject Method

Returns a custom object when overridden in a derived class.

Namespace:  System.Configuration
Assembly:  System.Configuration (in System.Configuration.dll)
Visual Basic (Declaration)
Protected Friend Overridable Function GetRuntimeObject As Object
Visual Basic (Usage)
Dim returnValue As Object

returnValue = Me.GetRuntimeObject()
C#
protected internal virtual Object GetRuntimeObject()
Visual C++
protected public:
virtual Object^ GetRuntimeObject()
JScript
protected internal function GetRuntimeObject() : Object

Return Value

Type: System..::.Object
The object representing the section.

When the GetSection method is called at run time, the configuration system first creates an appropriate instance of the ConfigurationSection class, and then returns the object it obtains from the GetRuntimeObject method.

By default, GetRuntimeObject simply returns the object that represents the ConfigurationSection from which it is called.

Notes to Implementers:

You can override the GetRuntimeObject method to return a custom type at run time.

For example, to restrict runtime modification of the settings in the ConfigurationSection class, you can override GetRuntimeObject and return a custom type that enforces restrictions on which settings can be modified, if any.

If the runtime object is internal only, the returned object cannot be used outside the assembly that defines it. One way to create an object that derives from ConfigurationSection and can only be accessed by code in your assembly at run time is to create an internal runtime object that has a method that returns your ConfigurationSection implementation.

The following example shows how to use the GetRuntimeObject method.

Visual Basic
' Customizes the use of CustomSection
 ' by setting _ReadOnly to false.
' Remember you must use it along with ThrowIfReadOnly.
Protected Overrides Function GetRuntimeObject() As Object
   ' To enable property setting just assign true to
   ' the following flag.
   _ReadOnly = True
   Return MyBase.GetRuntimeObject()
End Function 'GetRuntimeObject


C#
// Customizes the use of CustomSection
// by setting _ReadOnly to false.
// Remember you must use it along with ThrowIfReadOnly.
protected override object GetRuntimeObject()
{
    // To enable property setting just assign true to
    // the following flag.
    _ReadOnly = true;
    return base.GetRuntimeObject();
}


Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98

The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.

.NET Framework

Supported in: 3.5, 3.0, 2.0
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
Page view tracker