Tagged Questions
The xmldoc tag has no wiki summary.
9
votes
1answer
120 views
How can I link to MSDN/official documentation from my C# XML documentation comments?
Given an XML comment on a class something like this:
///<summary>Handles the AuthenticateRequest event in the ASP.NET page request lifecycle to authenticate users.</summary>
...
5
votes
1answer
354 views
IDE Plugin for XMLDoc
there is an IDE Plugin out there (I think it was not free) which assists in writing XMLDocumention inside the IDE. I tried to search for it, but I cannot find it anymore. Anybody knows it?
2
votes
1answer
67 views
How to define programming language for the `<code>` element
How do I define programming language for the <code> element in XmlDocs?
I'm having XML examples, but they are highlighted as C# (since it's a C# project).
Example:
/// <code>
/// ...
2
votes
2answers
623 views
Problem with XML encoding of database contents with Latin characters
I have an ASP Access database that contains strings in various European languages. The database was populated prior by agents in the respective countries. It contains entries with accented etc ...
1
vote
1answer
212 views
Proper xml comments on .NET interface
if there is an interface and a class that implements it and you want to have the the xml comment on it to be used in VS intellisense or documentation where would you put the xml comment? on the ...
1
vote
3answers
140 views
How programmatically extract type description which is shown by intellisense as hint
When I type some Class, e.g. Console, then press ctrl+space and intellisense show hint "Class System.Console Represents standart input, output and error streams...."
How programmatically get this ...
1
vote
2answers
211 views
Put prefix on all elements of xml document
I'm using C# and i need to create a XML document. Ok, i did, but, in each element i need to put a tc prefix.
The only way that i know, is using xmlDoc.CreateElement("tc", "node1", "file.xsd"), but it ...
1
vote
1answer
591 views
What is the proper way to reference Embedded Resources in .net xmldoc comments?
I have a C# project that uses xml comments. I make chm files from them with Sandcastle via the Sandcastle Help File Builder. One of the member functions in this project makes use of an embedded ...
0
votes
3answers
153 views
Build Sandcastle Documentation When Building Visual Studio Project
I am using the Sandcastle Help File Builder to output my C# XML-DOC file to the Website format. How can I accomplish the samething from the command line so that I can add this as a build event in ...
0
votes
1answer
149 views
Using doxygen to create documentation for existing C# code with XML comments
I've read everywhere that doxygen is the way to go for generating documentation for C# code. I've got a single interface that I want to document first (baby steps), and it already has the XML ...
0
votes
1answer
25 views
PHP xmldoc how to select and save
I have this html content, there are 500 tables like this in the page.
$html="
<table>
<tbody>
<tr>
<td>
<br>
<strong>
...
0
votes
1answer
683 views
innerHTML yielding undefined, but correct data is visible
var Model,node;
document.getElementById('sedans').innerHTML='';
var thismodelabbr,prevmodelabbr;
for(var j=0; j<xmlDoc.getElementsByTagName('data').length; j++){
node = ...
-4
votes
1answer
124 views
Read XML with c# [closed]
I have a xml file that looks like this
<?xml version="1.0" standalone="yes"?>
<Ribbon>
<Tab Text="Tab1">
<Grupi Text="Grupi1">
<Buttoni ...