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
'Declaration
Function CanCreateProject ( _
pszFilename As String, _
grfCreateFlags As UInteger, _
<OutAttribute> ByRef pfCanCreate As Integer _
) As Integer
int CanCreateProject(
string pszFilename,
uint grfCreateFlags,
out int pfCanCreate
)
int CanCreateProject(
[InAttribute] String^ pszFilename,
[InAttribute] unsigned int grfCreateFlags,
[OutAttribute] int% pfCanCreate
)
abstract CanCreateProject :
pszFilename:string *
grfCreateFlags:uint32 *
pfCanCreate:int byref -> int
function CanCreateProject(
pszFilename : String,
grfCreateFlags : uint,
pfCanCreate : int
) : int
Parameters
pszFilename
Type: String[in] File name of the project you are trying to create.
grfCreateFlags
Type: UInt32[in] Flags whose values are taken from the __VSCREATEPROJFLAGS enumeration.
pfCanCreate
Type: Int32%[out] true if the project can be created.
Return Value
Type: 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
);
.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.