VirtualTypeImplementor.SetField Method
Sets the value of the requested field.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'Declaration
Public Overridable Sub SetField ( _
field As FieldInfo, _
instance As Object, _
value As Object _
)
public virtual void SetField(
FieldInfo field,
Object instance,
Object value
)
public:
virtual void SetField(
FieldInfo^ field,
Object^ instance,
Object^ value
)
abstract SetField :
field:FieldInfo *
instance:Object *
value:Object -> unit
override SetField :
field:FieldInfo *
instance:Object *
value:Object -> unit
public function SetField(
field : FieldInfo,
instance : Object,
value : Object
)
Parameters
field
Type: FieldInfoThe field for which to set the value.
instance
Type: ObjectThe instance on which to set the field. This may be nulla null reference (Nothing in Visual Basic) if the field is static.
value
Type: ObjectThe new value of the field.
Exceptions
Exception | Condition |
---|---|
NotImplementedException | If non-abstract derived class did not provide an implementation by overriding this method. |
.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.