|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492 |
- <?xml version="1.0" encoding="utf-8"?>
- <doc>
- <assembly>
- <name>System.Reflection.Extensions</name>
- </assembly>
- <members>
- <member name="T:System.Reflection.CustomAttributeExtensions">
- <summary>Contains static methods for retrieving custom attributes.</summary>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute``1(System.Reflection.Assembly)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified assembly. </summary>
- <returns>A custom attribute that matches <paramref name="T" />, or null if no such attribute is found.</returns>
- <param name="element">The assembly to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute(System.Reflection.Assembly,System.Type)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified assembly.</summary>
- <returns>A custom attribute that matches <paramref name="attributeType" />, or null if no such attribute is found.</returns>
- <param name="element">The assembly to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute``1(System.Reflection.MemberInfo)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified member.</summary>
- <returns>A custom attribute that matches <paramref name="T" />, or null if no such attribute is found.</returns>
- <param name="element">The member to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute``1(System.Reflection.MemberInfo,System.Boolean)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member.</summary>
- <returns>A custom attribute that matches <paramref name="T" />, or null if no such attribute is found.</returns>
- <param name="element">The member to inspect.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute(System.Reflection.MemberInfo,System.Type)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified member.</summary>
- <returns>A custom attribute that matches <paramref name="attributeType" />, or null if no such attribute is found.</returns>
- <param name="element">The member to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute(System.Reflection.MemberInfo,System.Type,System.Boolean)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified member, and optionally inspects the ancestors of that member.</summary>
- <returns>A custom attribute that matches <paramref name="attributeType" />, or null if no such attribute is found.</returns>
- <param name="element">The member to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute``1(System.Reflection.Module)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified module.</summary>
- <returns>A custom attribute that matches <paramref name="T" />, or null if no such attribute is found.</returns>
- <param name="element">The module to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute(System.Reflection.Module,System.Type)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified module.</summary>
- <returns>A custom attribute that matches <paramref name="attributeType" />, or null if no such attribute is found.</returns>
- <param name="element">The module to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute``1(System.Reflection.ParameterInfo)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified parameter.</summary>
- <returns>A custom attribute that matches <paramref name="T" />, or null if no such attribute is found.</returns>
- <param name="element">The parameter to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute``1(System.Reflection.ParameterInfo,System.Boolean)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified parameter, and optionally inspects the ancestors of that parameter.</summary>
- <returns>A custom attribute that matches <paramref name="T" />, or null if no such attribute is found.</returns>
- <param name="element">The parameter to inspect.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified parameter.</summary>
- <returns>A custom attribute that matches <paramref name="attributeType" />, or null if no such attribute is found.</returns>
- <param name="element">The parameter to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttribute(System.Reflection.ParameterInfo,System.Type,System.Boolean)">
- <summary>Retrieves a custom attribute of a specified type that is applied to a specified parameter, and optionally inspects the ancestors of that parameter.</summary>
- <returns>A custom attribute matching <paramref name="attributeType" />, or null if no such attribute is found.</returns>
- <param name="element">The parameter to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.Reflection.AmbiguousMatchException">More than one of the requested attributes was found. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes``1(System.Reflection.Assembly)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified assembly. </summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="T" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The assembly to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.Assembly)">
- <summary>Retrieves a collection of custom attributes that are applied to a specified assembly.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The assembly to inspect.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.Assembly,System.Type)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified assembly.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="attributeType" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The assembly to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.MemberInfo)">
- <summary>Retrieves a collection of custom attributes that are applied to a specified member.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The member to inspect.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes``1(System.Reflection.MemberInfo)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified member.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="T" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The member to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes``1(System.Reflection.MemberInfo,System.Boolean)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="T" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The member to inspect.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.MemberInfo,System.Boolean)">
- <summary>Retrieves a collection of custom attributes that are applied to a specified member, and optionally inspects the ancestors of that member.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> that match the specified criteria, or an empty collection if no such attributes exist. </returns>
- <param name="element">The member to inspect.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.MemberInfo,System.Type)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified member.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="attributeType" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The member to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.MemberInfo,System.Type,System.Boolean)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified member, and optionally inspects the ancestors of that member.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="attributeType" />, or an empty collection if no such attributes exist.</returns>
- <param name="element">The member to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.Module)">
- <summary>Retrieves a collection of custom attributes that are applied to a specified module.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The module to inspect.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes``1(System.Reflection.Module)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified module.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="T" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The module to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.Module,System.Type)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified module.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="attributeType" />, or an empty collection if no such attributes exist.</returns>
- <param name="element">The module to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.ParameterInfo)">
- <summary>Retrieves a collection of custom attributes that are applied to a specified parameter.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The parameter to inspect.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes``1(System.Reflection.ParameterInfo)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified parameter.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="T" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The parameter to inspect.</param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.ParameterInfo,System.Boolean)">
- <summary>Retrieves a collection of custom attributes that are applied to a specified parameter, and optionally inspects the ancestors of that parameter.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The parameter to inspect.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes``1(System.Reflection.ParameterInfo,System.Boolean)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified parameter, and optionally inspects the ancestors of that parameter.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="T" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The parameter to inspect.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <typeparam name="T">The type of attribute to search for.</typeparam>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> is null. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified parameter.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="attributeType" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The parameter to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.GetCustomAttributes(System.Reflection.ParameterInfo,System.Type,System.Boolean)">
- <summary>Retrieves a collection of custom attributes of a specified type that are applied to a specified parameter, and optionally inspects the ancestors of that parameter.</summary>
- <returns>A collection of the custom attributes that are applied to <paramref name="element" /> and that match <paramref name="attributeType" />, or an empty collection if no such attributes exist. </returns>
- <param name="element">The parameter to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- <exception cref="T:System.TypeLoadException">A custom attribute type cannot be loaded. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.IsDefined(System.Reflection.Assembly,System.Type)">
- <summary>Indicates whether custom attributes of a specified type are applied to a specified assembly.</summary>
- <returns>true if an attribute of the specified type is applied to <paramref name="element" />; otherwise, false.</returns>
- <param name="element">The assembly to inspect.</param>
- <param name="attributeType">The type of the attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.IsDefined(System.Reflection.MemberInfo,System.Type)">
- <summary>Indicates whether custom attributes of a specified type are applied to a specified member.</summary>
- <returns>true if an attribute of the specified type is applied to <paramref name="element" />; otherwise, false.</returns>
- <param name="element">The member to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.IsDefined(System.Reflection.MemberInfo,System.Type,System.Boolean)">
- <summary>Indicates whether custom attributes of a specified type are applied to a specified member, and, optionally, applied to its ancestors.</summary>
- <returns>true if an attribute of the specified type is applied to <paramref name="element" />; otherwise, false.</returns>
- <param name="element">The member to inspect.</param>
- <param name="attributeType">The type of the attribute to search for.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- <exception cref="T:System.NotSupportedException">
- <paramref name="element" /> is not a constructor, method, property, event, type, or field. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.IsDefined(System.Reflection.Module,System.Type)">
- <summary>Indicates whether custom attributes of a specified type are applied to a specified module.</summary>
- <returns>true if an attribute of the specified type is applied to <paramref name="element" />; otherwise, false.</returns>
- <param name="element">The module to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.IsDefined(System.Reflection.ParameterInfo,System.Type)">
- <summary>Indicates whether custom attributes of a specified type are applied to a specified parameter.</summary>
- <returns>true if an attribute of the specified type is applied to <paramref name="element" />; otherwise, false.</returns>
- <param name="element">The parameter to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- </member>
- <member name="M:System.Reflection.CustomAttributeExtensions.IsDefined(System.Reflection.ParameterInfo,System.Type,System.Boolean)">
- <summary>Indicates whether custom attributes of a specified type are applied to a specified parameter, and, optionally, applied to its ancestors.</summary>
- <returns>true if an attribute of the specified type is applied to <paramref name="element" />; otherwise, false.</returns>
- <param name="element">The parameter to inspect.</param>
- <param name="attributeType">The type of attribute to search for.</param>
- <param name="inherit">true to inspect the ancestors of <paramref name="element" />; otherwise, false. </param>
- <exception cref="T:System.ArgumentNullException">
- <paramref name="element" /> or <paramref name="attributeType" /> is null. </exception>
- <exception cref="T:System.ArgumentException">
- <paramref name="attributeType" /> is not derived from <see cref="T:System.Attribute" />. </exception>
- </member>
- <member name="T:System.Reflection.InterfaceMapping">
- <summary>Retrieves the mapping of an interface into the actual methods on a class that implements that interface.</summary>
- </member>
- <member name="F:System.Reflection.InterfaceMapping.InterfaceMethods">
- <summary>Shows the methods that are defined on the interface.</summary>
- </member>
- <member name="F:System.Reflection.InterfaceMapping.InterfaceType">
- <summary>Shows the type that represents the interface.</summary>
- </member>
- <member name="F:System.Reflection.InterfaceMapping.TargetMethods">
- <summary>Shows the methods that implement the interface.</summary>
- </member>
- <member name="F:System.Reflection.InterfaceMapping.TargetType">
- <summary>Represents the type that was used to create the interface mapping.</summary>
- </member>
- <member name="T:System.Reflection.RuntimeReflectionExtensions">
- <summary>Provides methods that retrieve information about types at run time.</summary>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetMethodInfo(System.Delegate)">
- <summary>Gets an object that represents the method represented by the specified delegate.</summary>
- <returns>An object that represents the method.</returns>
- <param name="del">The delegate to examine.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeBaseDefinition(System.Reflection.MethodInfo)">
- <summary>Retrieves an object that represents the specified method on the direct or indirect base class where the method was first declared.</summary>
- <returns>An object that represents the specified method's initial declaration on a base class.</returns>
- <param name="method">The method to retrieve information about.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeEvent(System.Type,System.String)">
- <summary>Retrieves an object that represents the specified event.</summary>
- <returns>An object that represents the specified event, or null if the event is not found.</returns>
- <param name="type">The type that contains the event.</param>
- <param name="name">The name of the event.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeEvents(System.Type)">
- <summary>Retrieves a collection that represents all the events defined on a specified type.</summary>
- <returns>A collection of events for the specified type.</returns>
- <param name="type">The type that contains the events.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeField(System.Type,System.String)">
- <summary>Retrieves an object that represents a specified field.</summary>
- <returns>An object that represents the specified field, or null if the field is not found.</returns>
- <param name="type">The type that contains the field.</param>
- <param name="name">The name of the field.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeFields(System.Type)">
- <summary>Retrieves a collection that represents all the fields defined on a specified type.</summary>
- <returns>A collection of fields for the specified type.</returns>
- <param name="type">The type that contains the fields.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeInterfaceMap(System.Reflection.TypeInfo,System.Type)">
- <summary>Returns an interface mapping for the specified type and the specified interface.</summary>
- <returns>An object that represents the interface mapping for the specified interface and type.</returns>
- <param name="typeInfo">The type to retrieve a mapping for.</param>
- <param name="interfaceType">The interface to retrieve a mapping for.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeMethod(System.Type,System.String,System.Type[])">
- <summary>Retrieves an object that represents a specified method.</summary>
- <returns>An object that represents the specified method, or null if the method is not found.</returns>
- <param name="type">The type that contains the method.</param>
- <param name="name">The name of the method.</param>
- <param name="parameters">An array that contains the method's parameters.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeMethods(System.Type)">
- <summary>Retrieves a collection that represents all methods defined on a specified type.</summary>
- <returns>A collection of methods for the specified type.</returns>
- <param name="type">The type that contains the methods.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperties(System.Type)">
- <summary>Retrieves a collection that represents all the properties defined on a specified type.</summary>
- <returns>A collection of properties for the specified type.</returns>
- <param name="type">The type that contains the properties.</param>
- </member>
- <member name="M:System.Reflection.RuntimeReflectionExtensions.GetRuntimeProperty(System.Type,System.String)">
- <summary>Retrieves an object that represents a specified property.</summary>
- <returns>An object that represents the specified property, or null if the property is not found.</returns>
- <param name="type">The type that contains the property.</param>
- <param name="name">The name of the property.</param>
- </member>
- </members>
- </doc>
|