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!

ICustomAttributeProvider.IsDefined

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

[Visual Basic]
Function IsDefined( _
   ByVal attributeType As Type _
) As Boolean
[C#]
bool IsDefined(
   Type attributeType
);
[C++]
bool IsDefined(
   Type* attributeType
) = 0;
[JScript]
function IsDefined(
   attributeType : Type
) : Boolean;

Parameters

attributeType
The Type object to which the custom attributes are applied

Return Value

true if the attributeType is found on this member; false otherwise.

Remarks

To be supplied

See Also

ICustomAttributeProvider Interface | ICustomAttributeProvider Members | System.Reflection Namespace