Click or drag to resize

ParameterDefinitionUtil Class

Extension methods for ParameterDefinition.
Inheritance Hierarchy
SystemObject
  Nova.UtilitiesParameterDefinitionUtil

Namespace:  Nova.Utilities
Assembly:  Nova.CodeDOM (in Nova.CodeDOM.dll) Version: 7.44.8391.13415
Syntax
C#
public static class ParameterDefinitionUtil

The ParameterDefinitionUtil type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetCategory
Get the category name.
Public methodStatic memberIsIn
Check if the ParameterDefinition has the 'in' modifier.
Public methodStatic memberIsOut
Check if the ParameterDefinition has the 'out' modifier.
Public methodStatic memberIsParams
Check if the ParameterDefinition has the 'params' modifier.
Public methodStatic memberIsRef
Check if the ParameterDefinition has the 'ref' modifier.
Public methodStatic memberIsThis
Check if the ParameterDefinition has the 'this' modifier (actually, if it's parent MethodDefinition has the extension attribute, and it's the first parameter of the method).
Top
Fields
  NameDescription
Public fieldStatic memberParamArrayAttributeName
The name of the 'params' attribute.
Top
See Also