예제 #1
0
 /// <summary>Returns the contents of an XML documentation tag for the specified member.</summary>
 /// <param name="member">The reflected member.</param>
 /// <param name="tagName">Name of the tag.</param>
 /// <returns>The contents of the "summary" tag for the member.</returns>
 public static string GetXmlDocsTag(this ContextualMemberInfo member, string tagName)
 {
     return(member.MemberInfo.GetXmlDocsTag(tagName));
 }
예제 #2
0
 /// <summary>Returns the contents of the "summary" XML documentation tag for the specified member.</summary>
 /// <param name="member">The reflected member.</param>
 /// <returns>The contents of the "summary" tag for the member.</returns>
 public static string GetXmlDocsSummary(this ContextualMemberInfo member)
 {
     return(member.MemberInfo.GetXmlDocsSummary());
 }
예제 #3
0
 /// <summary>Returns the contents of the "remarks" XML documentation tag for the specified member.</summary>
 /// <param name="member">The reflected member.</param>
 /// <returns>The contents of the "summary" tag for the member.</returns>
 public static string GetXmlDocsRemarks(this ContextualMemberInfo member)
 {
     return(member.MemberInfo.GetXmlDocsRemarks());
 }
예제 #4
0
 /// <summary>Returns the contents of an XML documentation tag for the specified member.</summary>
 /// <param name="member">The reflected member.</param>
 /// <returns>The contents of the "summary" tag for the member.</returns>
 public static XElement?GetXmlDocsElement(this ContextualMemberInfo member)
 {
     return(member.MemberInfo.GetXmlDocsElement());
 }