Skip to content

Port System.ComponentModel.Composition source code comments to Docs #2324

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
May 1, 2019
Merged
Show file tree
Hide file tree
Changes from 1 commit
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 number Diff line number Diff line change
Expand Up @@ -745,6 +745,9 @@

]]></format>
</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="compositionService" /> or <paramref name="attributedPart" /> is <see langword="null" />.</exception>
<exception cref="T:System.ComponentModel.Composition.CompositionException">An error occurred during composition. <see cref="P:System.ComponentModel.Composition.CompositionException.Errors" /> will contain a collection of errors that occurred.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.ComponentModel.Composition.ICompositionService" /> has been disposed of.</exception>
</Docs>
</Member>
<Member MemberName="SatisfyImportsOnce">
Expand Down Expand Up @@ -776,6 +779,8 @@
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException">
<paramref name="reflectionContext" /> is <see langword="null" />.</exception>
<exception cref="T:System.ComponentModel.Composition.CompositionException">An error occurred during composition. <see cref="P:System.ComponentModel.Composition.CompositionException.Errors" /> will contain a collection of errors that occurred.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.ComponentModel.Composition.ICompositionService" /> has been disposed of.</exception>
</Docs>
</Member>
</Members>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,9 @@
]]></format>
</remarks>
<related type="Article" href="~/docs/standard/serialization/xml-and-soap-serialization.md">XML and Soap Serialization</related>
<exception cref="T:System.ArgumentNullException"><paramref name="info" /> is <see langword="null" />.</exception>
<exception cref="T:System.Runtime.Serialization.SerializationException"><paramref name="info" /> is missing a required value.</exception>
<exception cref="T:System.InvalidCastException"><paramref name="info" /> contains a value that cannot be cast to the correct type.</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,7 @@
<param name="errors">A collection of <see cref="T:System.ComponentModel.Composition.CompositionError" /> objects that represent problems during composition.</param>
<summary>Initializes a new instance of the <see cref="T:System.ComponentModel.Composition.CompositionException" /> class with the specified collection of composition errors.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentException"><paramref name="errors" /> contains an element that is <see langword="null" />.</exception>
</Docs>
</Member>
<Member MemberName=".ctor">
Expand Down
3 changes: 3 additions & 0 deletions xml/System.ComponentModel.Composition/ICompositionService.xml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,9 @@
<param name="part">The part to compose.</param>
<summary>Composes the specified part, with recomposition and validation disabled.</summary>
<remarks>To be added.</remarks>
<exception cref="T:System.ArgumentNullException"><paramref name="part" /> is <see langword="null" />.</exception>
<exception cref="T:System.ComponentModel.Composition.CompositionException">An error occurred during composition. <see cref="P:System.ComponentModel.Composition.CompositionException.Errors" /> will contain a collection of errors that occurred.</exception>
<exception cref="T:System.ObjectDisposedException">The <see cref="T:System.ComponentModel.Composition.ICompositionService" /> has been disposed of.</exception>
</Docs>
</Member>
</Members>
Expand Down