Skip to content

Commit 32e7cfc

Browse files
committed
Fixed references to overloaded methods
1 parent ed59fd8 commit 32e7cfc

6 files changed

Lines changed: 8 additions & 8 deletions

File tree

src/corelib/Core/Domain/ContainerCDN.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public class ContainerCDN
4242
/// <value>
4343
/// <see langword="true"/> if the container is CDN-Enabled; otherwise, <see langword="false"/>.
4444
/// </value>
45-
/// <seealso cref="O:IObjectStorageProvider.EnableCDNOnContainer"/>
45+
/// <seealso cref="O:net.openstack.Core.Providers.IObjectStorageProvider.EnableCDNOnContainer"/>
4646
/// <seealso cref="IObjectStorageProvider.DisableCDNOnContainer"/>
4747
/// <seealso href="http://docs.rackspace.com/files/api/v1/cf-devguide/content/CDN-Enable_a_Container-d1e2665.html">CDN-Enable a Container (Rackspace Cloud Files Developer Guide - API v1)</seealso>
4848
[JsonProperty("cdn_enabled")]

src/corelib/Core/Domain/ServerBase.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -372,7 +372,7 @@ public bool RevertResize()
372372
/// </summary>
373373
/// <remarks>
374374
/// This operation is completed asynchronously. To wait for the server to enter rescue mode,
375-
/// call <see cref="O:WaitForState"/> with the state <see cref="ServerState.Rescue"/>.
375+
/// call <see cref="O:net.openstack.Core.Domain.ServerBase.WaitForState"/> with the state <see cref="ServerState.Rescue"/>.
376376
///
377377
/// <note>
378378
/// The provider may limit the duration of rescue mode, after which the rescue image is destroyed
@@ -392,7 +392,7 @@ public string Rescue()
392392
/// </summary>
393393
/// <remarks>
394394
/// This operation is completed asynchronously. To wait for the server to exit rescue mode,
395-
/// call <see cref="O:WaitForActive"/>.
395+
/// call <see cref="WaitForActive"/>.
396396
///
397397
/// <note>
398398
/// The provider may limit the duration of rescue mode, after which the rescue image is destroyed

src/corelib/Core/Exceptions/ImageEnteredErrorStateException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace net.openstack.Core.Exceptions
66
{
77
/// <summary>
88
/// The exception that is thrown when the server enters an error state during a
9-
/// call to <see cref="O:IComputeProvider.WaitForImageState"/>.
9+
/// call to <see cref="O:net.openstack.Core.Providers.IComputeProvider.WaitForImageState"/>.
1010
/// </summary>
1111
/// <threadsafety static="true" instance="false"/>
1212
[Serializable]

src/corelib/Core/Exceptions/ServerEnteredErrorStateException.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ namespace net.openstack.Core.Exceptions
66
{
77
/// <summary>
88
/// The exception that is thrown when the server enters an error state during a
9-
/// call to <see cref="O:IComputeProvider.WaitForServerState"/>.
9+
/// call to <see cref="O:net.openstack.Core.Providers.IComputeProvider.WaitForServerState"/>.
1010
/// </summary>
1111
/// <threadsafety static="true" instance="false"/>
1212
[Serializable]

src/corelib/Core/Providers/IComputeProvider.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -530,7 +530,7 @@ public interface IComputeProvider
530530
/// </summary>
531531
/// <remarks>
532532
/// This operation is completed asynchronously. To wait for the server to enter rescue mode,
533-
/// call <see cref="O:WaitForServerState"/> with the state <see cref="ServerState.Rescue"/>.
533+
/// call <see cref="O:net.openstack.Core.Providers.IComputeProvider.WaitForServerState"/> with the state <see cref="ServerState.Rescue"/>.
534534
///
535535
/// <note>
536536
/// The provider may limit the duration of rescue mode, after which the rescue image is destroyed
@@ -563,7 +563,7 @@ public interface IComputeProvider
563563
/// </summary>
564564
/// <remarks>
565565
/// This operation is completed asynchronously. To wait for the server to exit rescue mode,
566-
/// call <see cref="O:WaitForServerActive"/>.
566+
/// call <see cref="WaitForServerActive"/>.
567567
///
568568
/// <note>
569569
/// The provider may limit the duration of rescue mode, after which the rescue image is destroyed

src/corelib/Providers/Rackspace/Objects/Monitoring/EntityOverview.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
/// <summary>
77
/// This class models the JSON representation of a monitoring entity overview.
88
/// </summary>
9-
/// <seealso cref="O:IMonitoringService.ListEntityOverviewsAsync"/>
9+
/// <seealso cref="O:net.openstack.Providers.Rackspace.IMonitoringService.ListEntityOverviewsAsync"/>
1010
/// <threadsafety static="true" instance="false"/>
1111
/// <preliminary/>
1212
[JsonObject(MemberSerialization.OptIn)]

0 commit comments

Comments
 (0)