C# Class Microsoft.ApplicationInsights.WindowsServer.Implementation.RuntimeBindingObject

A runtime bound object for a given .NET type.
Inheritance: System.MarshalByRefObject
Mostrar archivo Open project: Microsoft/ApplicationInsights-dotnet-server

Protected Methods

Method Description
GetProperty ( string name ) : object

Gets the property.

GetTargetObjectInstance ( Type targetType, object activationArgs ) : object

Gets the target object instance.

Private Methods

Method Description
GetProperty ( string name, BindingFlags bindingFlags, Type parameterTypes, object args ) : object

Gets the property.

GetProperty ( string name, Type parameterTypes, object args ) : object

Gets the property.

InvokeHelper ( string name, BindingFlags bindingFlags, object args, CultureInfo culture ) : object

Invocation helper for calling any member on our target object.

RuntimeBindingObject ( Type targetType ) : System

Method Details

GetProperty() protected method

Gets the property.
protected GetProperty ( string name ) : object
name string The name.
return object

GetTargetObjectInstance() protected abstract method

Gets the target object instance.
protected abstract GetTargetObjectInstance ( Type targetType, object activationArgs ) : object
targetType System.Type Type of the target.
activationArgs object The activation arguments.
return object