ProjectUtilities.FindNodeByUrl Method
Returns a specific node given a parent and a full path to the node to find.
Namespace: Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities
Assembly: Microsoft.VisualStudio.Data.Schema.Project (in Microsoft.VisualStudio.Data.Schema.Project.dll)
Syntax
'Declaration
Public Shared Function FindNodeByUrl ( _
node As IDatabaseNode, _
fullPath As String _
) As IDatabaseNode
'Usage
Dim node As IDatabaseNode
Dim fullPath As String
Dim returnValue As IDatabaseNode
returnValue = ProjectUtilities.FindNodeByUrl(node, _
fullPath)
public static IDatabaseNode FindNodeByUrl(
IDatabaseNode node,
string fullPath
)
public:
static IDatabaseNode^ FindNodeByUrl(
IDatabaseNode^ node,
String^ fullPath
)
public static function FindNodeByUrl(
node : IDatabaseNode,
fullPath : String
) : IDatabaseNode
static member FindNodeByUrl :
node:IDatabaseNode *
fullPath:string -> IDatabaseNode
Parameters
- node
Type: Microsoft.VisualStudio.Data.Schema.Project.Project.IDatabaseNode
The project node under which this path is to be found
- fullPath
Type: System.String
The full path to the desired node
Return Value
Type: Microsoft.VisualStudio.Data.Schema.Project.Project.IDatabaseNode
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.
See Also
Reference
Microsoft.VisualStudio.Data.Schema.Project.Project.Utilities Namespace