Skip to content
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

Replaced LayoutSerializer with Async variant #265

Closed
wants to merge 11 commits into from
Prev Previous commit
Next Next commit
fix indentation from space to tab
  • Loading branch information
X39 committed Mar 10, 2022
commit 319bb05751fa19b7c46eaa3d3e2302c0c2f277fc
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ namespace AvalonDock.Layout.Serialization
/// </summary>
/// <example>
/// <code>
/// private void Serialize()
/// {
/// // The serialization is not done async as the XmlSerializer used is not having async overloads
/// var serializer = new AvalonDock.Layout.Serialization.AsyncXmlLayoutSerializer(dockManager);
/// serializer.Serialize(@".\AvalonDock.config");
/// }
/// private void Serialize()
/// {
/// // The serialization is not done async as the XmlSerializer used is not having async overloads
/// var serializer = new AvalonDock.Layout.Serialization.AsyncXmlLayoutSerializer(dockManager);
/// serializer.Serialize(@".\AvalonDock.config");
/// }
/// </code>
/// </example>
/// <example>
Expand Down