 | InspectorTypeGetInspectorType Method (Type, DictionaryInspectorPropertyAttribute, InspectorConditionalPropertyAttribute) |
Gets inspector data such as name and description for the
specified type.
Namespace: Slash.ECS.Inspector.DataAssembly: Slash.ECS (in Slash.ECS.dll) Version: 1.0.6018.40178
Syntaxpublic static InspectorType GetInspectorType(
Type type,
ref Dictionary<InspectorPropertyAttribute, InspectorConditionalPropertyAttribute> conditionalInspectors
)
Public Shared Function GetInspectorType (
type As Type,
ByRef conditionalInspectors As Dictionary(Of InspectorPropertyAttribute, InspectorConditionalPropertyAttribute)
) As InspectorType
public:
static InspectorType^ GetInspectorType(
Type^ type,
Dictionary<InspectorPropertyAttribute^, InspectorConditionalPropertyAttribute^>^% conditionalInspectors
)
static member GetInspectorType :
type : Type *
conditionalInspectors : Dictionary<InspectorPropertyAttribute, InspectorConditionalPropertyAttribute> byref -> InspectorType
Parameters
- type
- Type: SystemType
Type to get inspector data for. - conditionalInspectors
- Type: System.Collections.GenericDictionaryInspectorPropertyAttribute, InspectorConditionalPropertyAttribute
Dictionary to be filled with conditions for inspectors to be shown.
Return Value
Type:
InspectorTypeInspector data for the specified type.
See Also