VirtualTypeBuilder.PropertyInfoCollection.Add Method (String, Type, Boolean, array<Attribute[])
Adds a PropertyInfo to the end of the collection.
Namespace: Microsoft.VisualStudio.Shell.Design
Assembly: Microsoft.VisualStudio.Shell.Design (in Microsoft.VisualStudio.Shell.Design.dll)
Syntax
'宣告
Public Function Add ( _
name As String, _
propertyType As Type, _
readOnly As Boolean, _
attributes As Attribute() _
) As Integer
public int Add(
string name,
Type propertyType,
bool readOnly,
Attribute[] attributes
)
Parameters
- name
Type: System.String
The name of the property to add.
- propertyType
Type: System.Type
The type of the property.
- readOnly
Type: System.Boolean
Determines whether this property is read-only or read-write.
- attributes
Type: array<System.Attribute[]
This parameter is used to configure the class member appropriately. Add only accepts the values of MemberAttributes that fit into the AccessMask or ScopeMask categories.
Return Value
Type: System.Int32
The index at which the value has been added.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | name is nulla null reference (Nothing in Visual Basic). -or- propertyType is nulla null reference (Nothing in Visual Basic) -or- An element in attributes is nulla null reference (Nothing in Visual Basic). attributes may be nulla null reference (Nothing in Visual Basic). |
ArgumentException | propertyType is not a runtime type. |
.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.