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!

Binder.BindToMethod

When implemented by a subclass, this method selects a method to invoke from the given set of methods, based on the specified criteria.

[Visual Basic]
MustOverride Public Function BindToMethod( _
   ByVal bindingAttr As BindingFlags, _
   ByVal match() As MethodBase, _
   ByRef args() As Object, _
   ByVal modifiers() As ParameterModifier, _
   ByVal culture As CultureInfo, _
   ByVal names() As String _
) As MethodBase
[C#]
public abstract MethodBase BindToMethod(
   BindingFlags bindingAttr,
   MethodBase[] match,
   ref object[] args,
   ParameterModifier[] modifiers,
   CultureInfo culture,
   string[] names
);
[C++]
public: virtual MethodBase* BindToMethod(
   BindingFlags bindingAttr,
   MethodBase* match[],
   Object** args[],
   ParameterModifier* modifiers[],
   CultureInfo* culture,
   String* names[]
) = 0;
[JScript]
public abstract function BindToMethod(
   bindingAttr : BindingFlags,
   match : MethodBase[],
   args : Object[],
   modifiers : ParameterModifier[],
   culture : CultureInfo,
   names : String[]
) : MethodBase;

Parameters

bindingAttr
[To be supplied.]
match
[To be supplied.]
args
[To be supplied.]
modifiers
[To be supplied.]
culture
An instance of CultureInfo used to control the coercion of data types.'> If this is null, the CultureInfo for the current thread is used. (Note that this is necessary to, for example, convert a String that represents 1000 to a Double value, since 1000 is represented differently by different cultures.) Not Yet Implemented
names
[To be supplied.]

Return Value

Returns a MethodBase object containing the matching method.

Remarks

[To be supplied.]

See Also

Binder Class | Binder Members | System.Reflection Namespace | MethodBase