XmlComment.InnerText Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets the text from inside the XML.
public:
property Platform::String ^ InnerText { Platform::String ^ get(); void set(Platform::String ^ value); };
winrt::hstring InnerText();
void InnerText(winrt::hstring value);
public string InnerText { get; set; }
var string = xmlComment.innerText;
xmlComment.innerText = string;
Public Property InnerText As String
Property Value
The text from inside the XML. Returns an empty string if there is no text.