Partilhar via


Método IVsTextManager.AttemptToCheckOutBufferFromScc2

Tentativas de fazer check-out de um arquivo de controle de código fonte.

Namespace:  Microsoft.VisualStudio.TextManager.Interop
Assembly:  Microsoft.VisualStudio.TextManager.Interop (em Microsoft.VisualStudio.TextManager.Interop.dll)

Sintaxe

'Declaração
Function AttemptToCheckOutBufferFromScc2 ( _
    pszFileName As String, _
    <OutAttribute> ByRef pfCheckoutSucceeded As Integer, _
    <OutAttribute> ByRef piStatusFlags As Integer _
) As Integer
int AttemptToCheckOutBufferFromScc2(
    string pszFileName,
    out int pfCheckoutSucceeded,
    out int piStatusFlags
)
int AttemptToCheckOutBufferFromScc2(
    [InAttribute] String^ pszFileName, 
    [OutAttribute] int% pfCheckoutSucceeded, 
    [OutAttribute] int% piStatusFlags
)
abstract AttemptToCheckOutBufferFromScc2 : 
        pszFileName:string * 
        pfCheckoutSucceeded:int byref * 
        piStatusFlags:int byref -> int
function AttemptToCheckOutBufferFromScc2(
    pszFileName : String, 
    pfCheckoutSucceeded : int, 
    piStatusFlags : int
) : int

Parâmetros

  • pszFileName
    Tipo: String

    [in] Nome do arquivo para fazer check-out.

  • pfCheckoutSucceeded
    Tipo: Int32%

    [out] Retorna true se check-out do buffer foi bem-sucedida.

  • piStatusFlags
    Tipo: Int32%

    [out]Sinalizadores de status adicionais. Este é o tagVSQueryEditResult valor retornado de uma chamada para QueryEditFiles. Se você passar um valor de nulluma referência nula (Nothing no Visual Basic) para este parâmetro, e em seguida, um tagVSQueryEditResult sinalizador não será retornado.

Valor de retorno

Tipo: 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 textmgr.idl:

HRESULT IVsTextManager::AttemptToCheckOutBufferFromScc2(
   [in] const WCHAR *pszFileName,
   [out] BOOL *pfCheckoutSucceeded,
   [out] int *piStatusFlags
);

Esse método é chamado quando o usuário tentar abrir um arquivo que está sob controle de código fonte. O controle de código fonte pode solicitar que o usuário para responder às informações nas caixas de diálogo quando este método é chamado.

Segurança do .NET Framework

Consulte também

Referência

IVsTextManager Interface

Namespace Microsoft.VisualStudio.TextManager.Interop