IVsProjectFactory.CanCreateProject Method
Determines whether a new project can be created.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop (in Microsoft.VisualStudio.Shell.Interop.dll)
Syntax
'Déclaration
Function CanCreateProject ( _
pszFilename As String, _
grfCreateFlags As UInteger, _
<OutAttribute> ByRef pfCanCreate As Integer _
) As Integer
'Utilisation
Dim instance As IVsProjectFactory
Dim pszFilename As String
Dim grfCreateFlags As UInteger
Dim pfCanCreate As Integer
Dim returnValue As Integer
returnValue = instance.CanCreateProject(pszFilename, _
grfCreateFlags, pfCanCreate)
int CanCreateProject(
string pszFilename,
uint grfCreateFlags,
out int pfCanCreate
)
int CanCreateProject(
[InAttribute] String^ pszFilename,
[InAttribute] unsigned int grfCreateFlags,
[OutAttribute] int% pfCanCreate
)
function CanCreateProject(
pszFilename : String,
grfCreateFlags : uint,
pfCanCreate : int
) : int
Parameters
pszFilename
Type: System.String[in] File name of the project you are trying to create.
grfCreateFlags
Type: System.UInt32[in] Flags whose values are taken from the __VSCREATEPROJFLAGS enumeration.
pfCanCreate
Type: System.Int32%[out] true if the project can be created.
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 IVsProjectFactory::CanCreateProject(
[in] LPCOLESTR pszFilename,
[in] VSCREATEPROJFLAGS grfCreateFlags,
[out] BOOL *pfCanCreate
);
Permissions
- 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.