NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

TypeDelegator.GetPropertyImpl

To be supplied

[Visual Basic]
Overrides Protected Function GetPropertyImpl( _
   ByVal name As String, _
   ByVal bindingAttr As BindingFlags, _
   ByVal binder As Binder, _
   ByVal types() As Type, _
   ByVal modifiers() As ParameterModifier _
) As PropertyInfo
[C#]
protected override PropertyInfo GetPropertyImpl(
   string name,
   BindingFlags bindingAttr,
   Binder binder,
   Type[] types,
   ParameterModifier[] modifiers
);
[C++]
protected: override PropertyInfo* GetPropertyImpl(
   String* name,
   BindingFlags bindingAttr,
   Binder* binder,
   Type* types[],
   ParameterModifier* modifiers[]
);
[JScript]
protected override function GetPropertyImpl(
   name : String,
   bindingAttr : BindingFlags,
   binder : Binder,
   types : Type[],
   modifiers : ParameterModifier[]
) : PropertyInfo;

Parameters

name
To be supplied
bindingAttr
This bit mask affects the way in which the search is conducted. The value is a combination of zero or more bit flags from BindingFlags, such as NonPublic and Default.
binder
An object that enables the binding, coercion of argument types, invocation of members, and retrieval of MemberInfo objects via reflection. If binder is null, the default binder is used. See Binder.
types
A list of parameter types. The list represents the number, order, and types of the parameters. Types cannot be null; use an appropriate GetMethod method or an empty array to search for a method without parameters.
modifiers
An array of the same length as types with elements that represent the attributes associated with the parameters of the method to get.

Return Value

A PropertyInfo object for the property that matches the specified criteria, or null if a match cannot be found.

Remarks

To be supplied

See Also

TypeDelegator Class | TypeDelegator Members | System.Reflection Namespace