| ServiceContainerResolveProperties Method |
Tries to resolve all property dependencies of the given instance.
Namespace: DigitalRune.ServiceLocationAssembly: DigitalRune.ServiceLocation (in DigitalRune.ServiceLocation.dll) Version: 1.3.0.0 (1.3.0.13596)
Syntax public void ResolveProperties(
Object instance
)
Public Sub ResolveProperties (
instance As Object
)
public:
void ResolveProperties(
Object^ instance
)
member ResolveProperties :
instance : Object -> unit
Parameters
- instance
- Type: SystemObject
The instance to build up.
Exceptions Remarks
This method inspects the properties of the given instance. It will
initialize the property with an instance from this container if the property has a
public setter, if the property type is found in the container, and if the property type
is a reference type (not a value type).
See Also