Click or drag to resize

ParameterInfoUtil Class

Extension methods for ParameterInfo.
Inheritance Hierarchy
SystemObject
  Nova.UtilitiesParameterInfoUtil

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

The ParameterInfoUtil type exposes the following members.

Methods
  NameDescription
Public methodStatic memberGetCategory
Get the category name.
Public methodStatic memberHasCustomAttribute
Determine if a ParameterInfo has a custom attribute.
Public methodStatic memberHasDynamicType
Determine if the ParameterInfo has a dynamic type.
Public methodStatic memberIsIn
Check if the ParameterInfo has the 'in' modifier.
Public methodStatic memberIsOut
Check if the ParameterInfo has the 'out' modifier.
Public methodStatic memberIsParams
Check if the ParameterInfo has the 'params' modifier.
Public methodStatic memberIsRef
Check if the ParameterInfo has the 'ref' modifier.
Public methodStatic memberIsThis
Check if the ParameterInfo has the 'this' modifier (actually, if it's parent MethodInfo 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