/usr/lib/NAnt/NAnt.NUnit.xml is in nant 0.92~rc1+dfsg-6.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 | <?xml version="1.0"?>
<doc>
<assembly>
<name>NAnt.NUnit</name>
</assembly>
<members>
<member name="T:NAnt.NUnit.Types.FormatterData">
<summary>
Carries data specified through the formatter element.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterData.Type">
<summary>
Gets or sets the type of the formatter.
</summary>
<value>The type of the formatter.</value></member>
<member name="P:NAnt.NUnit.Types.FormatterData.UseFile">
<summary>
Gets or sets a value indicating whether output should be persisted
to a file.
</summary>
<value>
<see langword="true" /> if output should be written to a file; otherwise,
<see langword="false" />. The default is <see langword="false" />.
</value></member>
<member name="P:NAnt.NUnit.Types.FormatterData.Extension">
<summary>
Gets or sets the extension to append to the output filename.
</summary>
<value>The extension to append to the output filename.</value></member>
<member name="P:NAnt.NUnit.Types.FormatterData.OutputDirectory">
<summary>
Gets or sets the directory where the output file should be written
to, if <see cref="P:NAnt.NUnit.Types.FormatterData.UseFile" /> is <see langword="true" />.
</summary>
<value>
The directory where the output file should be written to.
</value></member>
<member name="T:NAnt.NUnit.Types.FormatterDataCollection">
<summary>
Contains a strongly typed collection of <see cref="T:NAnt.NUnit.Types.FormatterData" /> objects.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" /> class.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.#ctor(NAnt.NUnit.Types.FormatterDataCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" /> class
with the specified <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" /> instance.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.#ctor(NAnt.NUnit.Types.FormatterData[])">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" /> class
with the specified array of <see cref="T:NAnt.NUnit.Types.FormatterData" /> instances.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterDataCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.Add(NAnt.NUnit.Types.FormatterData)">
<summary>
Adds a <see cref="T:NAnt.NUnit.Types.FormatterData" /> to the end of the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterData" /> to be added to the end of the collection.</param>
<returns>The position into which the new element was inserted.</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.AddRange(NAnt.NUnit.Types.FormatterData[])">
<summary>
Adds the elements of a <see cref="T:NAnt.NUnit.Types.FormatterData" /> array to the end of the collection.
</summary>
<param name="items">The array of <see cref="T:NAnt.NUnit.Types.FormatterData" /> elements to be added to the end of the collection.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.AddRange(NAnt.NUnit.Types.FormatterDataCollection)">
<summary>
Adds the elements of a <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" /> to the end of the collection.
</summary>
<param name="items">The <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" /> to be added to the end of the collection.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.Contains(NAnt.NUnit.Types.FormatterData)">
<summary>
Determines whether a <see cref="T:NAnt.NUnit.Types.FormatterData" /> is in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterData" /> to locate in the collection.</param>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the
collection; otherwise, <see langword="false" />.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.CopyTo(NAnt.NUnit.Types.FormatterData[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.IndexOf(NAnt.NUnit.Types.FormatterData)">
<summary>
Retrieves the index of a specified <see cref="T:NAnt.NUnit.Types.FormatterData" /> object in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterData" /> object for which the index is returned.</param>
<returns>
The index of the specified <see cref="T:NAnt.NUnit.Types.FormatterData" />. If the <see cref="T:NAnt.NUnit.Types.FormatterData" /> is not currently a member of the collection, it returns -1.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.Insert(System.Int32,NAnt.NUnit.Types.FormatterData)">
<summary>
Inserts a <see cref="T:NAnt.NUnit.Types.FormatterData" /> into the collection at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterData" /> to insert.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>
A <see cref="T:NAnt.NUnit.Types.FormatterDataEnumerator" /> for the entire collection.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterDataCollection.Remove(NAnt.NUnit.Types.FormatterData)">
<summary>
Removes a member from the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterData" /> to remove from the collection.</param></member>
<member name="T:NAnt.NUnit.Types.FormatterDataEnumerator">
<summary>
Enumerates the <see cref="T:NAnt.NUnit.Types.FormatterData" /> elements of a <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" />.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterDataEnumerator.#ctor(NAnt.NUnit.Types.FormatterDataCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterDataEnumerator" /> class
with the specified <see cref="T:NAnt.NUnit.Types.FormatterDataCollection" />.
</summary>
<param name="arguments">The collection that should be enumerated.</param></member>
<member name="P:NAnt.NUnit.Types.FormatterDataEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterDataEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterDataEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary></member>
<member name="T:NAnt.NUnit.Types.FormatterType">
<summary>
The built-in formatter types.
</summary></member>
<member name="F:NAnt.NUnit.Types.FormatterType.Plain">
<summary>
A plaintext formatter.
</summary></member>
<member name="F:NAnt.NUnit.Types.FormatterType.Xml">
<summary>
An XML formatter.
</summary></member>
<member name="T:NAnt.NUnit.Types.FormatterElement">
<summary>
Represents the FormatterElement of the NUnit task.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterElement.Type">
<summary>
Type of formatter.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterElement.Extension">
<summary>
Extension to append to the output filename.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterElement.UseFile">
<summary>
Determines whether output should be persisted to a file. The default
is <see langword="false" />.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterElement.OutputDirectory">
<summary>
Specifies the directory where the output file should be written to,
if <see cref="P:NAnt.NUnit.Types.FormatterElement.UseFile" /> is <see langword="true" />. If not
specified, the output file will be written to the directory where
the test module is located.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterElement.Data">
<summary>
Gets the underlying <see cref="T:NAnt.NUnit.Types.FormatterData" /> for the element.
</summary></member>
<member name="T:NAnt.NUnit.Types.FormatterElementCollection">
<summary>
Contains a strongly typed collection of <see cref="T:NAnt.NUnit.Types.FormatterElement" /> objects.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.#ctor">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" /> class.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.#ctor(NAnt.NUnit.Types.FormatterElementCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" /> class
with the specified <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" /> instance.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.#ctor(NAnt.NUnit.Types.FormatterElement[])">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" /> class
with the specified array of <see cref="T:NAnt.NUnit.Types.FormatterElement" /> instances.
</summary></member>
<member name="P:NAnt.NUnit.Types.FormatterElementCollection.Item(System.Int32)">
<summary>
Gets or sets the element at the specified index.
</summary>
<param name="index">The zero-based index of the element to get or set.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.Add(NAnt.NUnit.Types.FormatterElement)">
<summary>
Adds a <see cref="T:NAnt.NUnit.Types.FormatterElement" /> to the end of the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterElement" /> to be added to the end of the collection.</param>
<returns>The position into which the new element was inserted.</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.AddRange(NAnt.NUnit.Types.FormatterElement[])">
<summary>
Adds the elements of a <see cref="T:NAnt.NUnit.Types.FormatterElement" /> array to the end of the collection.
</summary>
<param name="items">The array of <see cref="T:NAnt.NUnit.Types.FormatterElement" /> elements to be added to the end of the collection.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.AddRange(NAnt.NUnit.Types.FormatterElementCollection)">
<summary>
Adds the elements of a <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" /> to the end of the collection.
</summary>
<param name="items">The <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" /> to be added to the end of the collection.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.Contains(NAnt.NUnit.Types.FormatterElement)">
<summary>
Determines whether a <see cref="T:NAnt.NUnit.Types.FormatterElement" /> is in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterElement" /> to locate in the collection.</param>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the
collection; otherwise, <see langword="false" />.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.CopyTo(NAnt.NUnit.Types.FormatterElement[],System.Int32)">
<summary>
Copies the entire collection to a compatible one-dimensional array, starting at the specified index of the target array.
</summary>
<param name="array">The one-dimensional array that is the destination of the elements copied from the collection. The array must have zero-based indexing.</param>
<param name="index">The zero-based index in <paramref name="array" /> at which copying begins.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.IndexOf(NAnt.NUnit.Types.FormatterElement)">
<summary>
Retrieves the index of a specified <see cref="T:NAnt.NUnit.Types.FormatterElement" /> object in the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterElement" /> object for which the index is returned.</param>
<returns>
The index of the specified <see cref="T:NAnt.NUnit.Types.FormatterElement" />. If the <see cref="T:NAnt.NUnit.Types.FormatterElement" /> is not currently a member of the collection, it returns -1.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.Insert(System.Int32,NAnt.NUnit.Types.FormatterElement)">
<summary>
Inserts a <see cref="T:NAnt.NUnit.Types.FormatterElement" /> into the collection at the specified index.
</summary>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterElement" /> to insert.</param></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.GetEnumerator">
<summary>
Returns an enumerator that can iterate through the collection.
</summary>
<returns>
A <see cref="T:NAnt.NUnit.Types.FormatterElementEnumerator" /> for the entire collection.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterElementCollection.Remove(NAnt.NUnit.Types.FormatterElement)">
<summary>
Removes a member from the collection.
</summary>
<param name="item">The <see cref="T:NAnt.NUnit.Types.FormatterElement" /> to remove from the collection.</param></member>
<member name="T:NAnt.NUnit.Types.FormatterElementEnumerator">
<summary>
Enumerates the <see cref="T:NAnt.NUnit.Types.FormatterElement" /> elements of a <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" />.
</summary></member>
<member name="M:NAnt.NUnit.Types.FormatterElementEnumerator.#ctor(NAnt.NUnit.Types.FormatterElementCollection)">
<summary>
Initializes a new instance of the <see cref="T:NAnt.NUnit.Types.FormatterElementEnumerator" /> class
with the specified <see cref="T:NAnt.NUnit.Types.FormatterElementCollection" />.
</summary>
<param name="arguments">The collection that should be enumerated.</param></member>
<member name="P:NAnt.NUnit.Types.FormatterElementEnumerator.Current">
<summary>
Gets the current element in the collection.
</summary>
<returns>
The current element in the collection.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterElementEnumerator.MoveNext">
<summary>
Advances the enumerator to the next element of the collection.
</summary>
<returns>
<see langword="true" /> if the enumerator was successfully advanced
to the next element; <see langword="false" /> if the enumerator has
passed the end of the collection.
</returns></member>
<member name="M:NAnt.NUnit.Types.FormatterElementEnumerator.Reset">
<summary>
Sets the enumerator to its initial position, which is before the
first element in the collection.
</summary></member>
</members>
</doc>
|