Skip to content

Commit 8f592f7

Browse files
committed
Regenerate: XML comments
1 parent bf4b512 commit 8f592f7

File tree

279 files changed

+941
-1380
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

279 files changed

+941
-1380
lines changed

src/NHibernate/Async/Action/BulkOperationCleanupAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
namespace NHibernate.Action
1818
{
1919
using System.Threading.Tasks;
20+
/// <content>
21+
/// Contains generated async methods
22+
/// </content>
2023
public partial class BulkOperationCleanupAction: IExecutable
2124
{
2225

src/NHibernate/Async/Action/CollectionAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
namespace NHibernate.Action
2222
{
2323
using System.Threading.Tasks;
24+
/// <content>
25+
/// Contains generated async methods
26+
/// </content>
2427
public abstract partial class CollectionAction : IExecutable, IComparable<CollectionAction>, IDeserializationCallback
2528
{
2629

src/NHibernate/Async/Action/CollectionRecreateAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
namespace NHibernate.Action
1919
{
2020
using System.Threading.Tasks;
21+
/// <content>
22+
/// Contains generated async methods
23+
/// </content>
2124
public sealed partial class CollectionRecreateAction : CollectionAction
2225
{
2326

src/NHibernate/Async/Action/CollectionRemoveAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
namespace NHibernate.Action
1919
{
2020
using System.Threading.Tasks;
21+
/// <content>
22+
/// Contains generated async methods
23+
/// </content>
2124
public sealed partial class CollectionRemoveAction : CollectionAction
2225
{
2326

src/NHibernate/Async/Action/CollectionUpdateAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
namespace NHibernate.Action
2222
{
2323
using System.Threading.Tasks;
24+
/// <content>
25+
/// Contains generated async methods
26+
/// </content>
2427
public sealed partial class CollectionUpdateAction : CollectionAction
2528
{
2629

src/NHibernate/Async/Action/EntityAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
namespace NHibernate.Action
2020
{
2121
using System.Threading.Tasks;
22+
/// <content>
23+
/// Contains generated async methods
24+
/// </content>
2225
public abstract partial class EntityAction : IExecutable, IComparable<EntityAction>, IDeserializationCallback
2326
{
2427

src/NHibernate/Async/Action/EntityDeleteAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
namespace NHibernate.Action
2020
{
2121
using System.Threading.Tasks;
22+
/// <content>
23+
/// Contains generated async methods
24+
/// </content>
2225
public sealed partial class EntityDeleteAction : EntityAction
2326
{
2427

src/NHibernate/Async/Action/EntityIdentityInsertAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
namespace NHibernate.Action
1818
{
1919
using System.Threading.Tasks;
20+
/// <content>
21+
/// Contains generated async methods
22+
/// </content>
2023
public sealed partial class EntityIdentityInsertAction : EntityAction
2124
{
2225

src/NHibernate/Async/Action/EntityInsertAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,9 @@
1919
namespace NHibernate.Action
2020
{
2121
using System.Threading.Tasks;
22+
/// <content>
23+
/// Contains generated async methods
24+
/// </content>
2225
public sealed partial class EntityInsertAction : EntityAction
2326
{
2427

src/NHibernate/Async/Action/EntityUpdateAction.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
namespace NHibernate.Action
2222
{
2323
using System.Threading.Tasks;
24+
/// <content>
25+
/// Contains generated async methods
26+
/// </content>
2427
public sealed partial class EntityUpdateAction : EntityAction
2528
{
2629

src/NHibernate/Async/Action/IExecutable.cs

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ namespace NHibernate.Action
1414
{
1515
using System.Threading.Tasks;
1616

17-
/// <summary>
18-
/// An operation which may be scheduled for later execution.
19-
/// Usually, the operation is a database insert/update/delete,
20-
/// together with required second-level cache management.
21-
/// </summary>
17+
/// <content>
18+
/// Contains generated async methods
19+
/// </content>
2220
public partial interface IExecutable
2321
{
2422

src/NHibernate/Async/AdoNet/AbstractBatcher.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@
2626
namespace NHibernate.AdoNet
2727
{
2828
using System.Threading.Tasks;
29-
/// <summary>
30-
/// Manages prepared statements and batching. Class exists to enforce separation of concerns
31-
/// </summary>
29+
/// <content>
30+
/// Contains generated async methods
31+
/// </content>
3232
public abstract partial class AbstractBatcher : IBatcher
3333
{
3434

src/NHibernate/Async/AdoNet/ConnectionManager.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
namespace NHibernate.AdoNet
2121
{
2222
using System.Threading.Tasks;
23+
/// <content>
24+
/// Contains generated async methods
25+
/// </content>
2326
public partial class ConnectionManager : ISerializable, IDeserializationCallback
2427
{
2528

src/NHibernate/Async/AdoNet/MySqlClientBatchingBatcher.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
namespace NHibernate.AdoNet
1818
{
1919
using System.Threading.Tasks;
20+
/// <content>
21+
/// Contains generated async methods
22+
/// </content>
2023
public partial class MySqlClientBatchingBatcher : AbstractBatcher
2124
{
2225

src/NHibernate/Async/AdoNet/NonBatchingBatcher.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,9 @@
1616
namespace NHibernate.AdoNet
1717
{
1818
using System.Threading.Tasks;
19-
/// <summary>
20-
/// An implementation of the <see cref="IBatcher" />
21-
/// interface that does no batching.
22-
/// </summary>
19+
/// <content>
20+
/// Contains generated async methods
21+
/// </content>
2322
public partial class NonBatchingBatcher : AbstractBatcher
2423
{
2524

src/NHibernate/Async/AdoNet/OracleDataClientBatchingBatcher.cs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@
1818
namespace NHibernate.AdoNet
1919
{
2020
using System.Threading.Tasks;
21-
/// <summary>
22-
/// Summary description for OracleDataClientBatchingBatcher.
23-
/// By Tomer Avissar
24-
/// </summary>
21+
/// <content>
22+
/// Contains generated async methods
23+
/// </content>
2524
public partial class OracleDataClientBatchingBatcher : AbstractBatcher
2625
{
2726

src/NHibernate/Async/AdoNet/SqlClientBatchingBatcher.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@
1818
namespace NHibernate.AdoNet
1919
{
2020
using System.Threading.Tasks;
21+
/// <content>
22+
/// Contains generated async methods
23+
/// </content>
2124
public partial class SqlClientBatchingBatcher : AbstractBatcher
2225
{
2326

src/NHibernate/Async/Cache/Entry/CacheEntry.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,9 @@
1717
namespace NHibernate.Cache.Entry
1818
{
1919
using System.Threading.Tasks;
20+
/// <content>
21+
/// Contains generated async methods
22+
/// </content>
2023
public sealed partial class CacheEntry
2124
{
2225

src/NHibernate/Async/Cache/Entry/CollectionCacheEntry.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@
1616
namespace NHibernate.Cache.Entry
1717
{
1818
using System.Threading.Tasks;
19+
/// <content>
20+
/// Contains generated async methods
21+
/// </content>
1922
public partial class CollectionCacheEntry
2023
{
2124

src/NHibernate/Async/Cache/IQueryCache.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -16,12 +16,9 @@
1616
namespace NHibernate.Cache
1717
{
1818
using System.Threading.Tasks;
19-
/// <summary>
20-
/// Defines the contract for caches capable of storing query results. These
21-
/// caches should only concern themselves with storing the matching result ids.
22-
/// The transactional semantics are necessarily less strict than the semantics
23-
/// of an item cache.
24-
/// </summary>
19+
/// <content>
20+
/// Contains generated async methods
21+
/// </content>
2522
public partial interface IQueryCache
2623
{
2724
Task<IList> GetAsync(QueryKey key, ICacheAssembler[] returnTypes, bool isNaturalKeyLookup, ISet<string> spaces, ISessionImplementor session);

src/NHibernate/Async/Cache/StandardQueryCache.cs

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,9 @@
2020
namespace NHibernate.Cache
2121
{
2222
using System.Threading.Tasks;
23-
/// <summary>
24-
/// The standard implementation of the Hibernate <see cref="IQueryCache" />
25-
/// interface. This implementation is very good at recognizing stale query
26-
/// results and re-running queries when it detects this condition, recaching
27-
/// the new results.
28-
/// </summary>
23+
/// <content>
24+
/// Contains generated async methods
25+
/// </content>
2926
public partial class StandardQueryCache : IQueryCache
3027
{
3128

src/NHibernate/Async/Collection/AbstractPersistentCollection.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
namespace NHibernate.Collection
2424
{
2525
using System.Threading.Tasks;
26+
/// <content>
27+
/// Contains generated async methods
28+
/// </content>
2629
public abstract partial class AbstractPersistentCollection : IPersistentCollection
2730
{
2831

src/NHibernate/Async/Collection/Generic/PersistentGenericBag.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
namespace NHibernate.Collection.Generic
2424
{
2525
using System.Threading.Tasks;
26+
/// <content>
27+
/// Contains generated async methods
28+
/// </content>
2629
public partial class PersistentGenericBag<T> : AbstractPersistentCollection, IList<T>, IList
2730
{
2831

src/NHibernate/Async/Collection/Generic/PersistentGenericIdentifierBag.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
namespace NHibernate.Collection.Generic
2525
{
2626
using System.Threading.Tasks;
27+
/// <content>
28+
/// Contains generated async methods
29+
/// </content>
2730
public partial class PersistentIdentifierBag<T> : AbstractPersistentCollection, IList<T>, IList
2831
{
2932

src/NHibernate/Async/Collection/Generic/PersistentGenericList.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
namespace NHibernate.Collection.Generic
2424
{
2525
using System.Threading.Tasks;
26+
/// <content>
27+
/// Contains generated async methods
28+
/// </content>
2629
public partial class PersistentGenericList<T> : AbstractPersistentCollection, IList<T>, IList
2730
{
2831

src/NHibernate/Async/Collection/Generic/PersistentGenericMap.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
namespace NHibernate.Collection.Generic
2424
{
2525
using System.Threading.Tasks;
26+
/// <content>
27+
/// Contains generated async methods
28+
/// </content>
2629
public partial class PersistentGenericMap<TKey, TValue> : AbstractPersistentCollection, IDictionary<TKey, TValue>, ICollection
2730
{
2831

src/NHibernate/Async/Collection/Generic/PersistentGenericSet.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@
2525
namespace NHibernate.Collection.Generic
2626
{
2727
using System.Threading.Tasks;
28+
/// <content>
29+
/// Contains generated async methods
30+
/// </content>
2831
public partial class PersistentGenericSet<T> : AbstractPersistentCollection, ISet<T>
2932
{
3033

src/NHibernate/Async/Collection/IPersistentCollection.cs

Lines changed: 3 additions & 30 deletions
Original file line numberDiff line numberDiff line change
@@ -19,36 +19,9 @@
1919
namespace NHibernate.Collection
2020
{
2121
using System.Threading.Tasks;
22-
/// <summary>
23-
/// <para>
24-
/// Persistent collections are treated as value objects by NHibernate.
25-
/// ie. they have no independent existence beyond the object holding
26-
/// a reference to them. Unlike instances of entity classes, they are
27-
/// automatically deleted when unreferenced and automatically become
28-
/// persistent when held by a persistent object. Collections can be
29-
/// passed between different objects (change "roles") and this might
30-
/// cause their elements to move from one database table to another.
31-
/// </para>
32-
/// <para>
33-
/// NHibernate "wraps" a collection in an instance of
34-
/// <see cref="IPersistentCollection" />. This mechanism is designed
35-
/// to support tracking of changes to the collection's persistent
36-
/// state and lazy instantiation of collection elements. The downside
37-
/// is that only certain abstract collection types are supported and
38-
/// any extra semantics are lost.
39-
/// </para>
40-
/// <para>
41-
/// Applications should <b>never</b> use classes in this namespace
42-
/// directly, unless extending the "framework" here.
43-
/// </para>
44-
/// <para>
45-
/// Changes to <b>structure</b> of the collection are recorded by the
46-
/// collection calling back to the session. Changes to mutable
47-
/// elements (ie. composite elements) are discovered by cloning their
48-
/// state when the collection is initialized and comparing at flush
49-
/// time.
50-
/// </para>
51-
/// </summary>
22+
/// <content>
23+
/// Contains generated async methods
24+
/// </content>
5225
public partial interface IPersistentCollection
5326
{
5427

src/NHibernate/Async/Collection/PersistentArrayHolder.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,9 @@
2323
namespace NHibernate.Collection
2424
{
2525
using System.Threading.Tasks;
26+
/// <content>
27+
/// Contains generated async methods
28+
/// </content>
2629
public partial class PersistentArrayHolder : AbstractPersistentCollection, ICollection
2730
{
2831

src/NHibernate/Async/Connection/ConnectionProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@
2121
namespace NHibernate.Connection
2222
{
2323
using System.Threading.Tasks;
24-
/// <summary>
25-
/// The base class for the ConnectionProvider.
26-
/// </summary>
24+
/// <content>
25+
/// Contains generated async methods
26+
/// </content>
2727
public abstract partial class ConnectionProvider : IConnectionProvider
2828
{
2929

src/NHibernate/Async/Connection/DriverConnectionProvider.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
namespace NHibernate.Connection
1515
{
1616
using System.Threading.Tasks;
17-
/// <summary>
18-
/// A ConnectionProvider that uses an IDriver to create connections.
19-
/// </summary>
17+
/// <content>
18+
/// Contains generated async methods
19+
/// </content>
2020
public partial class DriverConnectionProvider : ConnectionProvider
2121
{
2222

src/NHibernate/Async/Connection/IConnectionProvider.cs

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,9 @@
1616
namespace NHibernate.Connection
1717
{
1818
using System.Threading.Tasks;
19-
/// <summary>
20-
/// A strategy for obtaining ADO.NET <see cref="DbConnection"/>.
21-
/// </summary>
22-
/// <remarks>
23-
/// The <c>IConnectionProvider</c> interface is not intended to be exposed to the application.
24-
/// Instead it is used internally by NHibernate to obtain <see cref="DbConnection"/>.
25-
/// Implementors should provide a public default constructor.
26-
/// </remarks>
19+
/// <content>
20+
/// Contains generated async methods
21+
/// </content>
2722
public partial interface IConnectionProvider : IDisposable
2823
{
2924

0 commit comments

Comments
 (0)