IVsBuildPropertyStorage.RemoveProperty Method
Used by a project subtype to remove an MSBuild property.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.8.0 (in Microsoft.VisualStudio.Shell.Interop.8.0.dll)
Syntax
'Déclaration
Function RemoveProperty ( _
pszPropName As String, _
pszConfigName As String, _
storage As UInteger _
) As Integer
'Utilisation
Dim instance As IVsBuildPropertyStorage
Dim pszPropName As String
Dim pszConfigName As String
Dim storage As UInteger
Dim returnValue As Integer
returnValue = instance.RemoveProperty(pszPropName, _
pszConfigName, storage)
int RemoveProperty(
string pszPropName,
string pszConfigName,
uint storage
)
int RemoveProperty(
[InAttribute] String^ pszPropName,
[InAttribute] String^ pszConfigName,
[InAttribute] unsigned int storage
)
abstract RemoveProperty :
pszPropName:string *
pszConfigName:string *
storage:uint32 -> int
function RemoveProperty(
pszPropName : String,
pszConfigName : String,
storage : uint
) : int
Parameters
- pszPropName
Type: System.String
[in] Name of the build property to remove.
- pszConfigName
Type: System.String
[in] Name of the build configuration.
- storage
Type: System.UInt32
[in] Storage type for file persistence. Values are taken from the _PersistStorageType 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 vsshell80.idl:
HRESULT IVsBuildPropertyStorage::RemoveProperty(
[in] LPCOLESTR pszPropName,
[in] LPCOLESTR pszConfigName,
[in] PersistStorageType storage
);
This method can be employed by a project subtype to remove an MSBuild property and thus enable the project subtype to influence the base project's build process. For more information on project subtypes, see Project Subtype Overviewd.
.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.
See Also
Reference
IVsBuildPropertyStorage Interface