Class ArrayMemberDescriptor
Member descriptor for indexer of array types
Inheritance
System.Object
ArrayMemberDescriptor
Inherited Members
Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public class ArrayMemberDescriptor : ObjectCallbackMemberDescriptor, IWireableDescriptor
Constructors
ArrayMemberDescriptor(String, Boolean)
Initializes a new instance of the ArrayMemberDescriptor class.
Declaration
public ArrayMemberDescriptor(string name, bool isSetter)
Parameters
|
System.String
name
The name. |
|
System.Boolean
isSetter
if set to |
ArrayMemberDescriptor(String, Boolean, ParameterDescriptor[])
Initializes a new instance of the ArrayMemberDescriptor class.
Declaration
public ArrayMemberDescriptor(string name, bool isSetter, ParameterDescriptor[] indexerParams)
Parameters
|
System.String
name
The name. |
|
System.Boolean
isSetter
if set to |
|
ParameterDescriptor[]
indexerParams
The indexer parameters. |
Methods
PrepareForWiring(Table)
Prepares the descriptor for hard-wiring. The descriptor fills the passed table with all the needed data for hardwire generators to generate the appropriate code.
Declaration
public void PrepareForWiring(Table t)
Parameters
|
Table
t
The table to be filled |