Mono.Debugger.Soft.TypeMirror.GetCustomAttributes C# (CSharp) Method

GetCustomAttributes() public method

public GetCustomAttributes ( TypeMirror attributeType, bool inherit ) : CustomAttributeDataMirror[]
attributeType TypeMirror
inherit bool
return CustomAttributeDataMirror[]
		public CustomAttributeDataMirror[] GetCustomAttributes (TypeMirror attributeType, bool inherit) {
			if (attributeType == null)
				throw new ArgumentNullException ("attributeType");
			return GetCAttrs (attributeType, inherit);
		}

Same methods

TypeMirror::GetCustomAttributes ( bool inherit ) : CustomAttributeDataMirror[]