DataSpecifier.Resolve Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Resolve(String, DataSpecifier+Resolver) |
Converts the data specifier string into its textual representation by using the specified delegate resolver method. |
Resolve(String, Int32, DataSpecifier+Resolver) |
Converts the data specifier string, starting at the specified index, into its textual representation by using the specified delegate resolver method. |
Resolve(String, DataSpecifier+Resolver)
Converts the data specifier string into its textual representation by using the specified delegate resolver method.
public:
static System::Object ^ Resolve(System::String ^ specifier, Microsoft::VisualStudio::Data::Framework::DataSpecifier::Resolver ^ resolver);
public static object Resolve (string specifier, Microsoft.VisualStudio.Data.Framework.DataSpecifier.Resolver resolver);
static member Resolve : string * Microsoft.VisualStudio.Data.Framework.DataSpecifier.Resolver -> obj
Public Shared Function Resolve (specifier As String, resolver As DataSpecifier.Resolver) As Object
Parameters
- specifier
- String
The data specifier string to convert.
- resolver
- DataSpecifier.Resolver
A delegate to the method that carries out the conversion of the data specifier.
Returns
The textual representation of the data specifier.
Applies to
Resolve(String, Int32, DataSpecifier+Resolver)
Converts the data specifier string, starting at the specified index, into its textual representation by using the specified delegate resolver method.
public:
static System::Object ^ Resolve(System::String ^ input, int % index, Microsoft::VisualStudio::Data::Framework::DataSpecifier::Resolver ^ resolver);
public static object Resolve (string input, ref int index, Microsoft.VisualStudio.Data.Framework.DataSpecifier.Resolver resolver);
static member Resolve : string * int * Microsoft.VisualStudio.Data.Framework.DataSpecifier.Resolver -> obj
Public Shared Function Resolve (input As String, ByRef index As Integer, resolver As DataSpecifier.Resolver) As Object
Parameters
- input
- String
The data specifier string to convert.
- index
- Int32
The start location in the data specifier string that delimits the substring to resolve. This parameter is passed by reference, and, therefore, when this method returns to the caller, it will retain its new value.
- resolver
- DataSpecifier.Resolver
A delegate to the method that carries out the conversion of the data specifier.
Returns
The textual representation of the data specifier.