Kommentar
Åtkomst till den här sidan kräver auktorisering. Du kan prova att logga in eller ändra kataloger.
Åtkomst till den här sidan kräver auktorisering. Du kan prova att ändra kataloger.
Maps the name of a command to the GUID of its group and its identifier.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Declaration
Function MapNameToGUIDID ( _
pszCmdName As String, _
<OutAttribute> ByRef pguidCmdGroup As Guid, _
<OutAttribute> ByRef pdwCmdID As UInteger _
) As Integer
int MapNameToGUIDID(
string pszCmdName,
out Guid pguidCmdGroup,
out uint pdwCmdID
)
int MapNameToGUIDID(
[InAttribute] String^ pszCmdName,
[OutAttribute] Guid% pguidCmdGroup,
[OutAttribute] unsigned int% pdwCmdID
)
abstract MapNameToGUIDID :
pszCmdName:string *
pguidCmdGroup:Guid byref *
pdwCmdID:uint32 byref -> int
function MapNameToGUIDID(
pszCmdName : String,
pguidCmdGroup : Guid,
pdwCmdID : uint
) : int
Parameters
pszCmdName
Type: System.String[in] String containing the name of the command.
pguidCmdGroup
Type: System.Guid%[out] The GUID of the group the command belongs to.
pdwCmdID
Type: System.UInt32%[out] The command's identifier.
Return Value
Type: System.Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell.idl:
HRESULT IVsCmdNameMapping::MapNameToGUIDID(
[in] const LPCOLESTR pszCmdName,
out] GUID *pguidCmdGroup,
out] DWORD *pdwCmdID
);
.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.