NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

Module.IsDefined

Determines if the attributeType is defined on this module.

[Visual Basic]
Overridable Public Function IsDefined( _
   ByVal attributeType As Type _
) As Boolean
[C#]
public virtual bool IsDefined(
   Type attributeType
);
[C++]
public: virtual bool IsDefined(
   Type* attributeType
);
[JScript]
public function IsDefined(
   attributeType : Type
) : Boolean;

Parameters

attributeType
The Type object to which the custom attributes is applied.

Return Value

Returns true if one or more instance of attributeType is defined on this module.

Exceptions

Exception Type Condition
ArgumentNullException if the attributeType is null.

Remarks

[To be supplied.]

See Also

Module Class | Module Members | System.Reflection Namespace