Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Gets the value of the requested property.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Overridable Function GetPropertyValue ( _
propertyInfo As PropertyInfo, _
instance As Object, _
args As Object() _
) As Object
public virtual Object GetPropertyValue(
PropertyInfo propertyInfo,
Object instance,
Object[] args
)
public:
virtual Object^ GetPropertyValue(
PropertyInfo^ propertyInfo,
Object^ instance,
array<Object^>^ args
)
abstract GetPropertyValue :
propertyInfo:PropertyInfo *
instance:Object *
args:Object[] -> Object
override GetPropertyValue :
propertyInfo:PropertyInfo *
instance:Object *
args:Object[] -> Object
public function GetPropertyValue(
propertyInfo : PropertyInfo,
instance : Object,
args : Object[]
) : Object
Parameters
- propertyInfo
Type: PropertyInfo
instance
Type: ObjectThe instance on which to retrieve the property. This may be nulla null reference (Nothing in Visual Basic) if the property is static.
args
Type: array<Object[]An optional array of arguments used for parameterized properties. This will never be nulla null reference (Nothing in Visual Basic), but may be an empty array.
Return Value
Type: Object
An object that represents the requested property.
Exceptions
Exception | Condition |
---|---|
NotImplementedException | If non-abstract derived class did not provide an implementation by overriding this method. |
Remarks
Returns the object corresponding to the specified property.
.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.