Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Retrieves the flags that control editing of the source control server path.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Declaration
Function GetProviderBindingOptions ( _
<OutAttribute> ByRef pvscpboOptions As UInteger _
) As Integer
int GetProviderBindingOptions(
out uint pvscpboOptions
)
int GetProviderBindingOptions(
[OutAttribute] unsigned int% pvscpboOptions
)
abstract GetProviderBindingOptions :
pvscpboOptions:uint32 byref -> int
function GetProviderBindingOptions(
pvscpboOptions : uint
) : int
Parameters
- pvscpboOptions
Type: System.UInt32%
[out] Returns a combination of values from the __VSSCCPROVIDERBINDINGOPTIONS enumeration.
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 ivssccprojectproviderbinding.idl
HRESULT GetProviderBindingOptions(
[out, retval] VSSCCPROVIDERBINDINGOPTIONS *pvscpboOptions
);
The values returned from this method determine how the user can specify a source control server path. For example, if the project supports browsing for the server location, then the flag VSSCC_PBO_CANBROWSESERVERPATH is returned and the BrowseServerPath method is called.
.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.