Gets one or more output dependencies.
Namespace: Microsoft.VisualStudio.Package
Assembly: MPF.Project.NonShipping (in MPF.Project.NonShipping.dll)
Syntax
'宣言
Public Overridable Function get_DeployDependencies ( _
celt As UInteger, _
rgpdpd As IVsDeployDependency(), _
pcActual As UInteger() _
) As Integer
'使用
Dim instance As OutputGroup
Dim celt As UInteger
Dim rgpdpd As IVsDeployDependency()
Dim pcActual As UInteger()
Dim returnValue As Integer
returnValue = instance.get_DeployDependencies(celt, _
rgpdpd, pcActual)
public virtual int get_DeployDependencies(
uint celt,
IVsDeployDependency[] rgpdpd,
uint[] pcActual
)
public:
virtual int get_DeployDependencies(
unsigned int celt,
array<IVsDeployDependency^>^ rgpdpd,
array<unsigned int>^ pcActual
)
public function get_DeployDependencies(
celt : uint,
rgpdpd : IVsDeployDependency[],
pcActual : uint[]
) : int
Parameters
celt
Type: System.UInt32The number of dependencies to get.
rgpdpd
Type: []An array of IVsDeployDependency objects.
pcActual
Type: []pcActual[0] is the actual number of dependencies returned.
Return Value
Type: System.Int32
When implemented in derived classes, S_OK if the method succeeded, otherwise an error code.
Implements
IVsOutputGroup2.get_DeployDependencies(UInt32, [], [])
IVsOutputGroup.get_DeployDependencies(UInt32, [], [])
Remarks
By default this method returns E_NOTIMPL.
This method is an implementation of get_DeployDependencies2(UInt32, [], []). If a project has no deployment dependencies, it should return E_NOTIMPL from this method.
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.