Skip to content

Commit 1175e8c

Browse files
committed
Merge pull request #311 from sharwell/tweaks
Tweaks
2 parents e335835 + 306d2b2 commit 1175e8c

3 files changed

Lines changed: 6 additions & 0 deletions

File tree

src/corelib/Core/Collections/BasicReadOnlyCollectionPage`1.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,8 @@
1010
/// a function delegate as the implementation of <see cref="GetNextPageAsync"/>.
1111
/// </summary>
1212
/// <typeparam name="T">The type of elements in the collection.</typeparam>
13+
/// <threadsafety static="true" instance="false"/>
14+
/// <preliminary/>
1315
public class BasicReadOnlyCollectionPage<T> : ReadOnlyCollectionPage<T>
1416
{
1517
/// <summary>

src/corelib/Core/Collections/ReadOnlyCollectionPage`1.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,8 @@
1212
/// single page within a paginated collection.
1313
/// </summary>
1414
/// <typeparam name="T">The type of elements in the collection.</typeparam>
15+
/// <threadsafety static="true" instance="false"/>
16+
/// <preliminary/>
1517
public abstract class ReadOnlyCollectionPage<T> : ReadOnlyCollection<T>
1618
{
1719
/// <summary>

src/corelib/Core/Domain/Link.cs

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
namespace net.openstack.Core.Domain
22
{
3+
using System.Diagnostics;
34
using Newtonsoft.Json;
45

56
/// <summary>
@@ -8,6 +9,7 @@ namespace net.openstack.Core.Domain
89
/// <seealso href="http://docs.openstack.org/api/openstack-compute/2/content/LinksReferences.html">Links and References (OpenStack Compute API v2 and Extensions Reference)</seealso>
910
/// <threadsafety static="true" instance="false"/>
1011
[JsonObject(MemberSerialization.OptIn)]
12+
[DebuggerDisplay("{Rel,nq}: {Href,nq}")]
1113
public class Link
1214
{
1315
/// <summary>

0 commit comments

Comments
 (0)