DataSpecifier.Resolver Delegate
Provides a mechanism to dispatch the call for resolving the data specifier to the appropriate method.
Namespace: Microsoft.VisualStudio.Data.Framework
Assembly: Microsoft.VisualStudio.Data.Framework (in Microsoft.VisualStudio.Data.Framework.dll)
Syntax
'Declaration
Public Delegate Function Resolver ( _
specifier As DataSpecifier _
) As Object
public delegate Object Resolver(
DataSpecifier specifier
)
public delegate Object^ Resolver(
DataSpecifier^ specifier
)
type Resolver =
delegate of
specifier:DataSpecifier -> Object
JScript does not support delegates.
Parameters
specifier
Type: Microsoft.VisualStudio.Data.Framework.DataSpecifierThe DataSpecifier object instance on which this delegate is called.
Return Value
Type: System.Object
An object representing the method for resolving the data specifier.