TypeBuilder.DefineNestedType Method (String)
Microsoft Silverlight will reach end of support after October 2021. Learn more.
Defines a nested type, given its name.
Namespace: System.Reflection.Emit
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<SecuritySafeCriticalAttribute> _
Public Function DefineNestedType ( _
name As String _
) As TypeBuilder
[SecuritySafeCriticalAttribute]
public TypeBuilder DefineNestedType(
string name
)
Parameters
- name
Type: System.String
The short name of the type. name cannot contain embedded nulls.
Return Value
Type: System.Reflection.Emit.TypeBuilder
The defined nested type.
Exceptions
Exception | Condition |
---|---|
ArgumentException | Length of name is zero. |
ArgumentNullException | name is nulla null reference (Nothing in Visual Basic). |
Remarks
This method can be used to create nested types even after the CreateType method has been called on the enclosing type.
The nested type needs to be complete before you can reflect on it using GetMembers or GetNestedType, or GetNestedTypes.
See the description of CreateType for the order in which nested types and nesting types should be completed.
Version Information
Silverlight
Supported in: 5, 4, 3
Platforms
For a list of the operating systems and browsers that are supported by Silverlight, see Supported Operating Systems and Browsers.