FlavoredProject.IVsUIHierarchy.ParseCanonicalName Method
Returns the identifier of the hierarchy item, given its canonical name.
Namespace: Microsoft.VisualStudio.Shell.Flavor
Assembly: Microsoft.VisualStudio.Shell.12.0 (in Microsoft.VisualStudio.Shell.12.0.dll)
Syntax
'Declaration
Private Function ParseCanonicalName ( _
pszName As String, _
<OutAttribute> ByRef pitemid As UInteger _
) As Integer Implements IVsUIHierarchy.ParseCanonicalName
int IVsUIHierarchy.ParseCanonicalName(
string pszName,
out uint pitemid
)
private:
virtual int ParseCanonicalName(
String^ pszName,
[OutAttribute] unsigned int% pitemid
) sealed = IVsUIHierarchy::ParseCanonicalName
private abstract ParseCanonicalName :
pszName:string *
pitemid:uint32 byref -> int
private override ParseCanonicalName :
pszName:string *
pitemid:uint32 byref -> int
JScript does not support explicit interface implementations.
Parameters
pszName
Type: StringThe canonical name of the item.
pitemid
Type: UInt32%[out] The ID of the item.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Implements
IVsUIHierarchy.ParseCanonicalName(String, UInt32%)
Remarks
This method calls the ParseCanonicalName method, which calls the ParseCanonicalName method on the inner project.
Canonical names do not change between sessions of the environment, but item identifiers do. Use this method to manage workspace persistence, such as remembering window positions.
.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.