Hinweis
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, sich anzumelden oder das Verzeichnis zu wechseln.
Für den Zugriff auf diese Seite ist eine Autorisierung erforderlich. Sie können versuchen, das Verzeichnis zu wechseln.
Gets the value of a specified property from a project file.
Namespace: Microsoft.VisualStudio.Shell.Interop
Assembly: Microsoft.VisualStudio.Shell.Interop.9.0 (in Microsoft.VisualStudio.Shell.Interop.9.0.dll)
Syntax
'Declaration
Function GetPropertyValue ( _
pszPropName As String, _
pszConfigName As String, _
storage As UInteger, _
<OutAttribute> ByRef pbstrPropValue As String _
) As Integer
int GetPropertyValue(
string pszPropName,
string pszConfigName,
uint storage,
out string pbstrPropValue
)
int GetPropertyValue(
[InAttribute] String^ pszPropName,
[InAttribute] String^ pszConfigName,
[InAttribute] unsigned int storage,
[OutAttribute] String^% pbstrPropValue
)
abstract GetPropertyValue :
pszPropName:string *
pszConfigName:string *
storage:uint32 *
pbstrPropValue:string byref -> int
function GetPropertyValue(
pszPropName : String,
pszConfigName : String,
storage : uint,
pbstrPropValue : String
) : int
Parameters
pszPropName
Type: String[in] Name of the property.
pszConfigName
Type: String[in] Configuration associated with the property.
storage
Type: UInt32[in] _PersistStorageType specifying whether the property is stored in a project or user file.
pbstrPropValue
Type: String%[out] Value of the property.
Return Value
Type: Int32
If the method succeeds, it returns S_OK. If it fails, it returns an error code.
Remarks
COM Signature
From vsshell90.idl:
HRESULT GetPropertyValue(
[in] LPCOLESTR pszPropName,
[in] LPCOLESTR pszConfigName,
[in] PersistStorageType storage,
[out, retval] BSTR* pbstrPropValue
);
.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.