public static CustomAttributeData TryFindCustomAttribute(this CustomAttributeHandleCollection handles, ReadOnlySpan <byte> ns, ReadOnlySpan <byte> name, EcmaModule module) { CustomAttributeHandle handle = handles.FindCustomAttributeByName(ns, name, module); if (handle.IsNil) { return(null); } return(handle.ToCustomAttributeData(module)); }
public static bool IsCustomAttributeDefined(this CustomAttributeHandleCollection handles, ReadOnlySpan <byte> ns, ReadOnlySpan <byte> name, EcmaModule module) { return(!handles.FindCustomAttributeByName(ns, name, module).IsNil); }