Returns an enumerable list of all the inner text that matches the specified parameters.
Namespace:  Microsoft.VisualStudio.TestTools.WebTesting
Assembly:  Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Syntax
'Declaration
Public Function GetInnerTextForHtmlTags ( _
    tagName As String, _
    hasClosingTag As Boolean, _
    removeInnerTags As Boolean, _
    collapseWhiteSpace As Boolean, _
    beginParseOffset As Integer, _
    endParseOffset As Integer _
) As IEnumerable(Of HtmlTagInnerText)
public IEnumerable<HtmlTagInnerText> GetInnerTextForHtmlTags(
    string tagName,
    bool hasClosingTag,
    bool removeInnerTags,
    bool collapseWhiteSpace,
    int beginParseOffset,
    int endParseOffset
)
public:
IEnumerable<HtmlTagInnerText^>^ GetInnerTextForHtmlTags(
    String^ tagName, 
    bool hasClosingTag, 
    bool removeInnerTags, 
    bool collapseWhiteSpace, 
    int beginParseOffset, 
    int endParseOffset
)
member GetInnerTextForHtmlTags : 
        tagName:string * 
        hasClosingTag:bool * 
        removeInnerTags:bool * 
        collapseWhiteSpace:bool * 
        beginParseOffset:int * 
        endParseOffset:int -> IEnumerable<HtmlTagInnerText> 
public function GetInnerTextForHtmlTags(
    tagName : String, 
    hasClosingTag : boolean, 
    removeInnerTags : boolean, 
    collapseWhiteSpace : boolean, 
    beginParseOffset : int, 
    endParseOffset : int
) : IEnumerable<HtmlTagInnerText>
Parameters
- tagName 
 Type: String- The name of the tag to search for. 
- hasClosingTag 
 Type: Boolean- Specifies whether this tag has a closing tag. 
- removeInnerTags 
 Type: Boolean- true to filter out HTML tags from the inner text; otherwise, false. 
- collapseWhiteSpace 
 Type: Boolean- true to collapse the extra white space in the HTML document; otherwise, false. 
- beginParseOffset 
 Type: Int32- The start offset for parsing the HTML document. 
- endParseOffset 
 Type: Int32- The end offset for the parsing the HTML document. 
Return Value
Type: IEnumerable<HtmlTagInnerText>
An enumerable list of the inner text of the matching tags.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.