Skip to content
Merged
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
2 changes: 1 addition & 1 deletion xml/System.IO.Pipelines/PipeOptions.xml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
<param name="pool">The pool of memory blocks to be used for buffer management.</param>
<param name="readerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> to be used to execute <see cref="T:System.IO.Pipelines.PipeReader" /> callbacks and async continuations.</param>
<param name="writerScheduler">The <see cref="T:System.IO.Pipelines.PipeScheduler" /> used to execute <see cref="T:System.IO.Pipelines.PipeWriter" /> callbacks and async continuations.</param>
<param name="pauseWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> before <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A negative value prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</param>
<param name="pauseWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> before <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> starts blocking. A value of zero prevents <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> from ever blocking, effectively making the number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> unlimited.</param>
<param name="resumeWriterThreshold">The number of bytes in the <see cref="T:System.IO.Pipelines.Pipe" /> when <see cref="M:System.IO.Pipelines.PipeWriter.FlushAsync(System.Threading.CancellationToken)" /> stops blocking.</param>
<param name="minimumSegmentSize">The minimum size of the segment requested from <paramref name="pool" />.</param>
<param name="useSynchronizationContext">
Expand Down
2 changes: 1 addition & 1 deletion xml/System.Web.Services.Protocols/SoapFaultSubCode.xml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
<AssemblyVersion>4.0.0.0</AssemblyVersion>
</AssemblyInfo>
<Docs>
<summary>Initializes a new instance of the <see cref="T:System.Web.Services.Protocols.SoapFaultSubcode" /> class.</summary>
<summary>Initializes a new instance of the <see cref="T:System.Web.Services.Protocols.SoapFaultSubCode" /> class.</summary>
</Docs>
</MemberGroup>
<Member MemberName=".ctor">
Expand Down
10 changes: 3 additions & 7 deletions xml/System.Web/IHttpHandler.xml
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
You explicitly set the <xref:System.Web.IHttpHandler.IsReusable%2A> property to `true` or `false` by code you provide that overrides the <xref:System.Web.IHttpHandler.IsReusable%2A> property accessor (getter).


You explicitly set the <xref:System.Web.IHttpHandler.IsReusable%2A> property to `true` or `false` by code you provide that overrides the <xref:System.Web.IHttpHandler.IsReusable%2A> property accessor (getter).

## Examples
The following code example writes four lines of text to the HTTP output stream in response to a client request for a page named handler.aspx. All requests for handler.aspx are serviced by the `MyHttpHandler` class in the namespace `HandlerExample` contained in the assembly HandlerTest.dll.
Expand Down Expand Up @@ -92,10 +90,8 @@
<format type="text/markdown"><![CDATA[

## Remarks
Place your custom `HttpHandler` code in the <xref:System.Web.IHttpHandler.ProcessRequest%2A> virtual method, as shown in the [Examples](#examples) section.



Place your custom `HttpHandler` code in the <xref:System.Web.IHttpHandler.ProcessRequest%2A> virtual method, as shown in the Examples section.

## Examples
The following code example writes four lines of text to the HTTP output stream in response to a client request for a page named handler.aspx. All requests for handler.aspx are serviced by the `MyHttpHandler` class in the namespace `HandlerExample` contained in the assembly HandlerTest.dll.

Expand Down
10 changes: 5 additions & 5 deletions xml/System.Windows.Forms/ToolTip.xml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@
The <xref:System.Windows.Forms.ToolTip> class can be used in any container. To explicitly specify a container, use the <xref:System.Windows.Forms.ToolTip.%23ctor%28System.ComponentModel.IContainer%29> constructor. A single <xref:System.Windows.Forms.ToolTip> component typically is used to create ToolTips for multiple controls on a single form. After you create a <xref:System.Windows.Forms.ToolTip>, use a separate call to the <xref:System.Windows.Forms.ToolTip.SetToolTip%2A> method to associate ToolTip display text to an individual control. Then when the user moves the pointer on a control, the ToolTip with its text is displayed. You can call <xref:System.Windows.Forms.ToolTip.SetToolTip%2A> more than once for the same control to change the text that is associated with the control. To get the text that is associated with a control, use the <xref:System.Windows.Forms.ToolTip.GetToolTip%2A> method. To remove all ToolTip text associations with an instance of the <xref:System.Windows.Forms.ToolTip> class, use the <xref:System.Windows.Forms.ToolTip.RemoveAll%2A> method.

> [!NOTE]
> ToolTip text is not displayed for controls that are disabled. Unless the <xref:System.Windows.Forms.ToolTip.ShowAlways%2A> property is set to `true`, ToolTips are not displayed when their container is inactive.
> ToolTip text is not displayed for controls that are disabled. Unless the <xref:System.Windows.Forms.ToolTip.ShowAlways%2A> property is set to `true`, ToolTips are not displayed when their container is inactive.

The <xref:System.Windows.Forms.ToolTip> class provides the following properties and methods to modify the default behavior and appearance of a ToolTip.

Expand Down Expand Up @@ -425,10 +425,10 @@
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Windows.Forms.ToolTip.CreateParams%2A> property should only be extended when you are wrapping a standard Windows control class or to set styles not provided by the <xref:System.Windows.Forms?displayProperty=nameWithType> namespace. For more information about creating control parameters, see the `CreateWindow` and `CreateWindowEx` functions and the `CREATESTRUCT` structure documentation in the Windows Platform SDK reference located in the MSDN Library.
The <xref:System.Windows.Forms.ToolTip.CreateParams%2A> property should only be extended when you are wrapping a standard Windows control class or to set styles not provided by the <xref:System.Windows.Forms?displayProperty=nameWithType> namespace. For more information about creating control parameters, see [CreateWindowA](/windows/win32/api/winuser/nf-winuser-createwindowa), [CreateWindowEx](/windows/win32/api/winuser/nf-winuser-createwindowexa), and [CREATESTRUCT](/windows/win32/api/winuser/ns-winuser-createstructa).

> [!NOTE]
> When overriding the <xref:System.Windows.Forms.ToolTip.CreateParams%2A> property in a derived class, use the base class's <xref:System.Windows.Forms.ToolTip.CreateParams%2A> property to extend the base implementation.
> When overriding the <xref:System.Windows.Forms.ToolTip.CreateParams%2A> property in a derived class, use the base class's <xref:System.Windows.Forms.ToolTip.CreateParams%2A> property to extend the base implementation.

]]></format>
</remarks>
Expand Down Expand Up @@ -542,7 +542,7 @@

]]></format>
</remarks>
<altmember cref="Overload:System.Windows.Forms.ToolTip.Dispose" />
<altmember cref="M:System.Windows.Forms.ToolTip.Dispose(System.Boolean)" />
<altmember cref="M:System.Object.Finalize" />
<altmember cref="M:System.GC.SuppressFinalize(System.Object)" />
</Docs>
Expand Down Expand Up @@ -1453,7 +1453,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
The <xref:System.Windows.Forms.ToolTip> class has an internal timer that it uses to set the display duration for ToolTips. The duration associated with this timer is set through the <xref:System.Windows.Forms.ToolTip.AutoPopDelay%2A> property. The <xref:System.Windows.Forms.ToolTip.StopTimer%2A> method will stop this internal timer, causing any displayed ToolTip to be shown modally until the <xref:System.Windows.Forms.ToolTip.Hide%2A> method is called, or the parent form is minimized, hidden, or closed.
The <xref:System.Windows.Forms.ToolTip> class has an internal timer that it uses to set the display duration for ToolTips. Set the duration of the timer through the <xref:System.Windows.Forms.ToolTip.AutoPopDelay%2A> property. The <xref:System.Windows.Forms.ToolTip.StopTimer%2A> method stops this internal timer, causing any displayed ToolTip to be shown modally until the <xref:System.Windows.Forms.ToolTip.Hide%2A> method is called or the parent form is minimized, hidden, or closed.

]]></format>
</remarks>
Expand Down
6 changes: 3 additions & 3 deletions xml/System.Windows.Media.Animation/Storyboard.xml
Original file line number Diff line number Diff line change
Expand Up @@ -1717,9 +1717,9 @@
<format type="text/markdown"><![CDATA[

## Remarks
This method gets the <xref:System.Windows.Media.Animation.Storyboard.TargetProperty%2A> attached property on the specified object. For more information about how storyboard targeting works, see <xref:System.Windows.Media.Animation.Storyboard.TargetProperty%2A> attached property. For more information about how attached properties work, see [Attached Properties Overview](/dotnet/framework/wpf/advanced/attached-properties-overview).
This method gets the <xref:System.Windows.Media.Animation.Storyboard.TargetProperty> attached property on the specified object. For more information about how storyboard targeting works, see <xref:System.Windows.Media.Animation.Storyboard.TargetProperty> attached property. For more information about how attached properties work, see [Attached Properties Overview](/dotnet/framework/wpf/advanced/attached-properties-overview).

Note that if the <xref:System.Windows.Media.Animation.Storyboard.TargetProperty%2A> was set in markup, this method returns an empty <xref:System.Windows.PropertyPath> because the property reference is resolved and stored internally when it is parsed.
Note that if the <xref:System.Windows.Media.Animation.Storyboard.TargetProperty> was set in markup, this method returns an empty <xref:System.Windows.PropertyPath> because the property reference is resolved and stored internally when it is parsed.

]]></format>
</remarks>
Expand Down Expand Up @@ -2834,7 +2834,7 @@
<format type="text/markdown"><![CDATA[

## Remarks
This method sets the <xref:System.Windows.Media.Animation.Storyboard.TargetProperty%2A> attached property on the specified object. For more information about how storyboard targeting works, see <xref:System.Windows.Media.Animation.Storyboard.TargetProperty%2A>. For more information about how attached properties work, see [Attached Properties Overview](/dotnet/framework/wpf/advanced/attached-properties-overview).
This method sets the <xref:System.Windows.Media.Animation.Storyboard.TargetProperty> attached property on the specified object. For more information about how storyboard targeting works, see <xref:System.Windows.Media.Animation.Storyboard.TargetProperty>. For more information about how attached properties work, see [Attached Properties Overview](/dotnet/framework/wpf/advanced/attached-properties-overview).

]]></format>
</remarks>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@
<summary>Gets a collection of all the signature definitions that are associated with the <see cref="T:System.Windows.Documents.FixedDocument" />.</summary>
<value>An <see cref="T:System.Collections.Generic.ICollection`1" /> of signature definitions, typically one for every person who signed or will sign the document.</value>
<remarks>To be added.</remarks>
<altmember cref="T:System.Windows.Xps.Packaging.XPSSignatureDefinition" />
<altmember cref="T:System.Windows.Xps.Packaging.XpsSignatureDefinition" />
</Docs>
</Member>
<Member MemberName="Thumbnail">
Expand Down