Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Add copy buttons to all
 blocks
(function() {
function addCopyButtons() {
document.querySelectorAll('pre code').forEach(function(codeBlock) {
if (codeBlock.parentElement.hasAttribute('data-copy-added')) return;
codeBlock.parentElement.setAttribute('data-copy-added', 'true');
var btn = document.createElement('button');
btn.textContent = 'Copy';
btn.style.cssText = 'position:absolute;top:4px;right:4px;padding:2px 8px;font-size:11px;background:#4ecdc4;border:none;border-radius:4px;color:#1a1a2e;cursor:pointer;opacity:0.7;transition:opacity 0.2s;';
btn.onmouseover = function() { this.style.opacity = '1'; };
btn.onmouseout = function() { this.style.opacity = '0.7'; };
btn.onclick = function() {
navigator.clipboard.writeText(codeBlock.textContent).then(function() {
btn.textContent = 'Copied!';
setTimeout(function() { btn.textContent = 'Copy'; }, 1500);
});
};
codeBlock.parentElement.style.position = 'relative';
codeBlock.parentElement.appendChild(btn);
});
}
addCopyButtons();
// Re-run on dynamic content
var observer = new MutationObserver(addCopyButtons);
observer.observe(document.body, { childList: true, subtree: true });
})();
}
} catch(__e) { console.warn('[Userscript:Add Copy Buttons to Code Blocks]', __e); }
})();
(function(){
try {
var __m = "github.com";
var __re = new RegExp('^' + "github\\.com" + '
Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Force GitHub README to respect dark mode (function() { var style = document.createElement('style'); style.textContent = ' .markdown-body { color-scheme: dark light; } .markdown-body pre { background: #161b22 !important; } .markdown-body code { background: rgba(110, 118, 129, 0.4) !important; } .markdown-body table th, .markdown-body table td { border-color: #30363d !important; } .markdown-body img { background: #0d1117; } .markdown-body blockquote { border-left-color: #8b949e; } .markdown-body hr { border-color: #30363d; } '; document.head.appendChild(style); })(); } } catch(__e) { console.warn('[Userscript:GitHub Dark Mode README Fix]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Highlight search terms from Google/DuckDuckGo/Bing referrer (function() { var ref = document.referrer; var terms = []; if (ref.includes('google.com') || ref.includes('duckduckgo.com') || ref.includes('bing.com')) { var url = new URL(ref); var q = url.searchParams.get('q') || url.searchParams.get('p'); if (q) { terms = q.split(/\s+/).filter(function(t) { return t.length > 2; }); } } if (terms.length === 0) return; var style = document.createElement('style'); style.textContent = '.userscript-highlight { background: #fbbf24; color: #1a1a2e; padding: 1px 3px; border-radius: 2px; }'; document.head.appendChild(style); function highlight(node) { if (node.nodeType === 3) { // text node var text = node.textContent; var found = false; terms.forEach(function(term) { var regex = new RegExp('(' + term.replace(/[.*+?^${}()|[\]\\]/g, '\\') + ')', 'gi'); if (regex.test(text)) { found = true; var frag = document.createDocumentFragment(); var parts = text.split(regex); parts.forEach(function(part, i) { if (i % 2 === 0) { frag.appendChild(document.createTextNode(part)); } else { var span = document.createElement('span'); span.className = 'userscript-highlight'; span.textContent = part; frag.appendChild(span); } }); node.parentNode.replaceChild(frag, node); } }); } else if (node.nodeType === 1 && node.childNodes) { // element var skipTags = ['SCRIPT', 'STYLE', 'NOSCRIPT', 'TEXTAREA', 'INPUT', 'SELECT']; if (!skipTags.includes(node.tagName)) { Array.from(node.childNodes).forEach(highlight); } } } highlight(document.body); // Re-highlight on dynamic content var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1 || node.nodeType === 3) highlight(node); }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Highlight Search Terms]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Strip utm_, fbclid, gclid, etc. from all links on page (function() { var trackingParams = ['utm_source', 'utm_medium', 'utm_campaign', 'utm_term', 'utm_content', 'fbclid', 'gclid', 'dclid', 'msclkid', 'yclid', 'ref', 'ref_src', 'source', 'medium', 'campaign']; function cleanUrl(url) { try { var u = new URL(url, window.location.origin); var changed = false; trackingParams.forEach(function(p) { if (u.searchParams.has(p)) { u.searchParams.delete(p); changed = true; } }); return changed ? u.toString() : url; } catch (e) { return url; } } function cleanLinks() { document.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } cleanLinks(); var observer = new MutationObserver(function(mutations) { mutations.forEach(function(m) { m.addedNodes.forEach(function(node) { if (node.nodeType === 1) { if (node.tagName === 'A') cleanLinks(); node.querySelectorAll('a[href]').forEach(function(a) { var clean = cleanUrl(a.href); if (clean !== a.href) a.href = clean; }); } }); }); }); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:Remove Tracking Parameters from Links]', __e); } })(); (function(){ try { var __m = "youtube.com"; var __re = new RegExp('^' + "youtube\\.com" + ' Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Auto-enable theater mode on YouTube (function() { function tryTheater() { var btn = document.querySelector('button[aria-label="Theater mode"], ytd-player #player button[title="Theater mode"]'); if (btn && !btn.classList.contains('activated')) { btn.click(); } } // Try immediately tryTheater(); // Try after navigation (SPA) var lastUrl = location.href; setInterval(function() { if (location.href !== lastUrl) { lastUrl = location.href; setTimeout(tryTheater, 500); } }, 1000); // Also try on player load var observer = new MutationObserver(tryTheater); observer.observe(document.body, { childList: true, subtree: true }); })(); } } catch(__e) { console.warn('[Userscript:YouTube Theater Mode Default]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Remove or un-stick sticky/fixed headers that block content (function() { function unstick() { document.querySelectorAll('header, nav, [role="banner"], .header, .navbar, .sticky, .fixed-top, [style*="position: fixed"], [style*="position:sticky"]').forEach(function(el) { if (el.style.position === 'fixed' || el.style.position === 'sticky' || getComputedStyle(el).position === 'fixed' || getComputedStyle(el).position === 'sticky') { el.style.position = 'static'; el.style.top = 'auto'; el.style.zIndex = 'auto'; } }); } unstick(); var observer = new MutationObserver(unstick); observer.observe(document.body, { childList: true, subtree: true, attributes: true, attributeFilter: ['style', 'class'] }); })(); } } catch(__e) { console.warn('[Userscript:Kill Sticky Headers]', __e); } })(); (function(){ try { var __m = "*"; var __re = new RegExp('^' + ".*" + ' Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading
, 'i'); if (__m === '*' || __re.test(location.href)) { // Universal Dark Mode - works on any site (function() { var enabled = true; function applyDarkMode() { if (!enabled) return; // Create style element if it doesn't exist var style = document.getElementById('universal-dark-mode-style'); if (!style) { style = document.createElement('style'); style.id = 'universal-dark-mode-style'; document.head.appendChild(style); } // Dark mode CSS - inverts colors but preserves images/video style.textContent = ' /* Invert everything except media */ html { filter: invert(1) hue-rotate(180deg) !important; background: #1a1a2e !important; } /* Restore images, videos, iframes, canvas */ img, video, iframe, canvas, svg, picture, [style*="background-image"] { filter: invert(1) hue-rotate(180deg) !important; } /* Preserve specific elements that should not be inverted */ .no-dark-mode, .no-dark-mode *, [data-theme="light"], [data-theme="light"], .ace_editor, .ace_editor *, .CodeMirror, .CodeMirror *, .monaco-editor, .monaco-editor *, .markdown-body pre, .markdown-body pre *, .highlight, .highlight *, pre code, pre code * { filter: none !important; } /* Fix common UI elements */ .modal, .popup, .dropdown-menu, .tooltip, .popover { filter: invert(1) hue-rotate(180deg) !important; background: #2d2d44 !important; border-color: #444 !important; } /* Scrollbars */ ::-webkit-scrollbar { background: #1a1a2e !important; } ::-webkit-scrollbar-thumb { background: #444 !important; } ::-webkit-scrollbar-thumb:hover { background: #555 !important; } /* Selection */ ::selection { background: #4ecdc4 !important; color: #1a1a2e !important; } ::-moz-selection { background: #4ecdc4 !important; color: #1a1a2e !important; } '; } function removeDarkMode() { var style = document.getElementById('universal-dark-mode-style'); if (style) style.remove(); } // Toggle with Alt+Shift+D document.addEventListener('keydown', function(e) { if (e.altKey && e.shiftKey && e.key === 'D') { e.preventDefault(); enabled = !enabled; if (enabled) { applyDarkMode(); console.log('[Universal Dark Mode] Enabled'); } else { removeDarkMode(); console.log('[Universal Dark Mode] Disabled'); } } }); // Apply on load applyDarkMode(); // Re-apply on dynamic content var observer = new MutationObserver(function(mutations) { if (enabled && !document.getElementById('universal-dark-mode-style')) { applyDarkMode(); } }); observer.observe(document.head, { childList: true }); console.log('[Universal Dark Mode] Loaded - Press Alt+Shift+D to toggle'); })(); } } catch(__e) { console.warn('[Userscript:Universal Dark Mode]', __e); } })(); })(); Port docs from WinForms by carlossanlop · Pull Request #8393 · dotnet/dotnet-api-docs · GitHub
Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line numberDiff line numberDiff line change
Expand Up@@ -127,7 +127,7 @@
<Parameter Name="key" Type="System.String" />
</Parameters>
<Docs>
<param name="key">To be added.</param>
<param name="key">The key of the configuration section.</param>
<summary>Gets a configuration subsection with the specified key.</summary>
<returns>The configuration section for the specified key.</returns>
<remarks>The name of the configuration section is case-insensitive.</remarks>
Expand DownExpand Up@@ -160,7 +160,7 @@
<Docs>
<param name="key">The item index.</param>
<summary>Gets or sets a configuration value.</summary>
<value>To be added.</value>
<value>The configuration value.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand Down
25 changes: 13 additions & 12 deletions xml/Microsoft.Extensions.DependencyInjection/ServiceCollection.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,7 +161,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Determines whether the <see cref="T:System.Collections.Generic.ICollection`1" /> contains a specific value.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> is found in the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />.</returns>
Expand DownExpand Up@@ -205,8 +205,8 @@
<Parameter Name="arrayIndex" Type="System.Int32" />
</Parameters>
<Docs>
<param name="array">To be added.</param>
<param name="arrayIndex">To be added.</param>
<param name="array">The one-dimensional <see cref="T:System.Array" /> that is the destination of the elements copied from <see cref="T:System.Collections.Generic.ICollection`1" />. The <see cref="T:System.Array" /> must have zero-based indexing.</param>
<param name="arrayIndex">The zero-based index in <paramref name="array" /> at which copying begins.</param>
<summary>Copies the elements of the <see cref="T:System.Collections.Generic.ICollection`1" /> to an <see cref="T:System.Array" />, starting at a particular <see cref="T:System.Array" /> index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -245,7 +245,7 @@
</ReturnValue>
<Docs>
<summary>Gets the number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<value>To be added.</value>
<value>The number of elements contained in the <see cref="T:System.Collections.Generic.ICollection`1" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -324,7 +324,7 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to locate in the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Determines the index of a specific item in the <see cref="T:System.Collections.Generic.IList`1" />.</summary>
<returns>The index of <paramref name="item" /> if found in the list; otherwise, -1.</returns>
<remarks>To be added.</remarks>
Expand DownExpand Up@@ -367,8 +367,8 @@
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="item">To be added.</param>
<param name="index">The zero-based index at which <paramref name="item" /> should be inserted.</param>
<param name="item">The object to insert into the <see cref="T:System.Collections.Generic.IList`1" />.</param>
<summary>Inserts an item to the <see cref="T:System.Collections.Generic.IList`1" /> at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand DownExpand Up@@ -407,7 +407,8 @@
</ReturnValue>
<Docs>
<summary>Gets a value indicating whether the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only.</summary>
<value>To be added.</value>
<value>
<see langword="true" /> if the <see cref="T:System.Collections.Generic.ICollection`1" /> is read-only; otherwise, <see langword="false" />.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -447,9 +448,9 @@
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the element to get or set.</param>
<summary>Gets or sets the element at the specified index.</summary>
<value>To be added.</value>
<value>The element at the specified index.</value>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
Expand DownExpand Up@@ -521,7 +522,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="item" Type="Microsoft.Extensions.DependencyInjection.ServiceDescriptor" />
</Parameters>
<Docs>
<param name="item">To be added.</param>
<param name="item">The object to remove from the <see cref="T:System.Collections.Generic.ICollection`1" />.</param>
<summary>Removes the first occurrence of a specific object from the <see cref="T:System.Collections.Generic.ICollection`1" />.</summary>
<returns>
<see langword="true" /> if <paramref name="item" /> was successfully removed from the <see cref="T:System.Collections.Generic.ICollection`1" />; otherwise, <see langword="false" />. This method also returns <see langword="false" /> if <paramref name="item" /> is not found in the original <see cref="T:System.Collections.Generic.ICollection`1" />.</returns>
Expand DownExpand Up@@ -564,7 +565,7 @@ After the collection is marked as read-only, any further attempt to modify it th
<Parameter Name="index" Type="System.Int32" />
</Parameters>
<Docs>
<param name="index">To be added.</param>
<param name="index">The zero-based index of the item to remove.</param>
<summary>Removes the <see cref="T:System.Collections.Generic.IList`1" /> item at the specified index.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Abstractions/NullLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -63,7 +63,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -176,7 +176,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -93,7 +93,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -202,7 +202,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.Debug/DebugLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -107,7 +107,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -182,7 +182,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging.EventLog/EventLogLogger.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -139,7 +139,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -239,7 +239,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -84,7 +84,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of state to accept.</typeparam>
<param name="callback">The callback to be executed for every scope object.</param>
<param name="state">The state object to be passed into the callback.</param>
<summary>Executes callback for each currently active scope objects in order of creation.
Expand Down
4 changes: 2 additions & 2 deletions xml/Microsoft.Extensions.Logging/Logger`1.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -104,7 +104,7 @@
<Parameter Name="state" Type="TState" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the state to begin scope for.</typeparam>
<param name="state">The identifier for the scope.</param>
<summary>Begins a logical operation scope.</summary>
<returns>A disposable object that ends the logical operation scope on dispose.</returns>
Expand DownExpand Up@@ -189,7 +189,7 @@
<Parameter Name="formatter" Type="System.Func&lt;TState,System.Exception,System.String&gt;" />
</Parameters>
<Docs>
<typeparam name="TState">To be added.</typeparam>
<typeparam name="TState">The type of the object to be written.</typeparam>
<param name="logLevel">Entry will be written on this level.</param>
<param name="eventId">Id of the event.</param>
<param name="state">The entry to be written. Can be also an object.</param>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -85,7 +85,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.ConsoleApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless constructor because the platform specific Application object derives from this one and it doesn't define a constructor. The partial class generated by the designer defines the constructor in order to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -88,7 +88,7 @@
<Parameters />
<Docs>
<summary>Initializes a new instance of the <see cref="T:Microsoft.VisualBasic.ApplicationServices.WindowsFormsApplicationBase" /> class.</summary>
<remarks>To be added.</remarks>
<remarks>We have to have a parameterless ctor because the platform specific Application object derives from this one and it doesn't define a ctor because the partial class generated by the designer does that to configure the application.</remarks>
<related type="Article" href="/dotnet/visual-basic/language-reference/objects/">Objects (Visual Basic)</related>
</Docs>
</Member>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/BinaryEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -141,6 +141,7 @@
<summary>Gets the editor style used by the <see cref="M:System.ComponentModel.Design.BinaryEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/CollectionEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -664,6 +664,7 @@
<summary>Gets the edit style used by the <see cref="M:System.ComponentModel.Design.CollectionEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> enumeration value indicating the provided editing style. If the method is not supported in the specified context, this method will return the <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" /> identifier.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetItems">
Expand Down
1 change: 1 addition & 0 deletions xml/System.ComponentModel.Design/DateTimeEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -146,6 +146,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.ComponentModel.Design.DateTimeEditor.EditValue" /> method. If the method is not supported, this will return None.</summary>
<returns>An <see langword="enum" /> value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Original file line numberDiff line numberDiff line change
Expand Up@@ -110,6 +110,7 @@
<summary>Edits the specified object value using the edit style provided by <see cref="M:System.Drawing.Design.ImageEditor.GetEditStyle(System.ComponentModel.ITypeDescriptorContext)" />.</summary>
<returns>The new value of the object. If the value of the object has not changed, this method should return the same object passed to it.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetEditStyle">
Expand Down
2 changes: 2 additions & 0 deletions xml/System.ComponentModel.Design/ObjectSelectorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -234,6 +234,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="EqualsToValue">
Expand DownExpand Up@@ -421,6 +422,7 @@
<param name="value">The specified value.</param>
<summary>Sets the current <see cref="T:System.ComponentModel.Design.ObjectSelectorEditor" /> to the specified value.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="SubObjectSelector">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ColorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -163,6 +163,7 @@
<summary>Gets the editing style of the Edit method. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</summary>
<returns>An enum value indicating the provided editing style.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetPaintValueSupported">
Expand DownExpand Up@@ -201,6 +202,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.ColorEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -244,6 +246,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/ContentAlignmentEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -161,6 +161,7 @@
<summary>Gets the editing style of the <see cref="Overload:System.Drawing.Design.ContentAlignmentEditor.EditValue" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value indicating the provided editing style. If the method to retrieve the edit style is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/CursorEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -167,6 +167,7 @@
<summary>Retrieves the editing style of the <see cref="Overload:System.Drawing.Design.CursorEditor.EditValue" /> method.</summary>
<returns>An enum value indicating the provided editing style. If the method is not supported, this will return <see cref="F:System.Drawing.Design.UITypeEditorEditStyle.None" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="IsDropDownResizable">
Expand Down
1 change: 1 addition & 0 deletions xml/System.Drawing.Design/FontEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -184,6 +184,7 @@
<summary>Gets the editor style used by the <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" /> method.</summary>
<returns>A <see cref="T:System.Drawing.Design.UITypeEditorEditStyle" /> value that indicates the style of editor used by <see cref="M:System.Drawing.Design.FontEditor.EditValue(System.ComponentModel.ITypeDescriptorContext,System.IServiceProvider,System.Object)" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/FontNameEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -116,6 +116,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.FontNameEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="PaintValue">
Expand DownExpand Up@@ -152,6 +153,7 @@
<param name="e">What to paint and where to paint it.</param>
<summary>Paints a representative value of the given object to the provided canvas. Painting should be done within the boundaries of the provided rectangle.</summary>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
2 changes: 2 additions & 0 deletions xml/System.Drawing.Design/IconEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -363,6 +363,7 @@
<returns>
<see langword="true" /> if <see cref="Overload:System.Drawing.Design.UITypeEditor.PaintValue" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -443,6 +444,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
3 changes: 3 additions & 0 deletions xml/System.Drawing.Design/ImageEditor.xml
Original file line numberDiff line numberDiff line change
Expand Up@@ -270,6 +270,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="GetExtensions">
Expand DownExpand Up@@ -419,6 +420,7 @@
<returns>
<see langword="true" /> if <see cref="M:System.Drawing.Design.ImageEditor.PaintValue(System.Drawing.Design.PaintValueEventArgs)" /> is implemented; otherwise, <see langword="false" />.</returns>
<remarks>To be added.</remarks>
<inheritdoc />
</Docs>
</Member>
<Member MemberName="LoadFromStream">
Expand DownExpand Up@@ -499,6 +501,7 @@

]]></format>
</remarks>
<inheritdoc />
</Docs>
</Member>
</Members>
Expand Down
Loading