Método IVsEditorFactoryNotify.NotifyDependentItemSaved (IVsHierarchy, UInt32, String, UInt32, String)
Método chamado quando um arquivo é salvo.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int NotifyDependentItemSaved(
IVsHierarchy pHier,
uint itemidParent,
string pszMkDocumentParent,
uint itemidDpendent,
string pszMkDocumentDependent
)
int NotifyDependentItemSaved(
IVsHierarchy^ pHier,
unsigned int itemidParent,
String^ pszMkDocumentParent,
unsigned int itemidDpendent,
String^ pszMkDocumentDependent
)
abstract NotifyDependentItemSaved :
pHier:IVsHierarchy *
itemidParent:uint32 *
pszMkDocumentParent:string *
itemidDpendent:uint32 *
pszMkDocumentDependent:string -> int
Function NotifyDependentItemSaved (
pHier As IVsHierarchy,
itemidParent As UInteger,
pszMkDocumentParent As String,
itemidDpendent As UInteger,
pszMkDocumentDependent As String
) As Integer
Parâmetros
- pHier
[in] Ponteiro para o IVsHierarchy para o item salvo.
- itemidParent
[in] O item ID (VSITEMID) do objeto do pai do arquivo.
- pszMkDocumentParent
[in] Um ponteiro para uma seqüência de caracteres que contém o nome do documento pai.
- itemidDpendent
[in] O item ID (VSITEMID) do objeto de dependentes do arquivo.
- pszMkDocumentDependent
[in] Um ponteiro para uma seqüência de caracteres que contém o nome do documento dependente.
Valor de retorno
Type: System.Int32
Se o método for bem-sucedido, ele retorna S_OK.Se ele falhar, ele retorna um código de erro.
Comentários
COM assinatura
De vsshell.idl:
HRESULT IVsEditorFactoryNotify::NotifyDependentItemSaved(
[in] IVsHierarchy *pHier,
[in] VSITEMID itemidParent,
[in] LPCOLESTR pszMkDocumentParent,
[in] VSITEMID itemidDpendent,
[in] LPCOLESTR pszMkDocumentDependent
);
Consulte também
Interface IVsEditorFactoryNotify
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo