Método IVsPropertyFileOut.EndPropertySection (UInt32)
Termina uma seção de propriedades (um fluxo interno de propriedade).
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (em Microsoft.VisualStudio.Shell.Interop.dll)
Sintaxe
int EndPropertySection(
uint dwCookie
)
int EndPropertySection(
unsigned int dwCookie
)
abstract EndPropertySection :
dwCookie:uint32 -> int
Function EndPropertySection (
dwCookie As UInteger
) As Integer
Parâmetros
- dwCookie
[in] Ponteiro para um inteiro que é um cookie, identificando a seção de propriedade ao fim.Cookie é proveniente do BeginPropertySection chamar.
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.
Implementações
IVsPropertyStreamOut.EndPropertySection(UInt32)
Comentários
Chamar o Flush método depois de chamar o EndPropertySection e continuando com um fluxo de propriedade externa.
COM assinatura
De vsshell.idl:
[C++]
HRESULT IVsPropertyFileOut::EndPropertySection(
[in] VSCOOKIE dwCookie
);
Consulte também
Interface IVsPropertyFileOut
Namespace Microsoft.VisualStudio.Shell.Interop
Retornar ao topo