You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="headers">A collection of custom HTTP headers to associate with the container (see <see cref="GetContainerHeader"/>).</param>
51
52
/// <param name="region">The region in which to execute this action. If not specified, the user's default region will be used.</param>
52
53
/// <param name="useInternalUrl"><c>true</c> to use the endpoint's <see cref="Endpoint.InternalURL"/>; otherwise <c>false</c> to use the endpoint's <see cref="Endpoint.PublicURL"/>.</param>
53
54
/// <param name="identity">The cloud identity to use for this request. If not specified, the default identity for the current provider instance will be used.</param>
@@ -60,7 +61,11 @@ public interface IObjectStorageProvider
60
61
/// </list>
61
62
/// </returns>
62
63
/// <exception cref="ArgumentNullException">If <paramref name="container"/> is <c>null</c>.</exception>
63
-
/// <exception cref="ArgumentException">If <paramref name="container"/> is empty.</exception>
64
+
/// <exception cref="ArgumentException">
65
+
/// If <paramref name="container"/> is empty.
66
+
/// <para>-or-</para>
67
+
/// <para>If <paramref name="headers"/> contains two equivalent keys when compared using <see cref="StringComparer.OrdinalIgnoreCase"/>.</para>
68
+
/// </exception>
64
69
/// <exception cref="ContainerNameException">If <paramref name="container"/> is not a valid container name.</exception>
65
70
/// <exception cref="NotSupportedException">
66
71
/// If the provider does not support the given <paramref name="identity"/> type.
@@ -76,7 +81,7 @@ public interface IObjectStorageProvider
76
81
/// </exception>
77
82
/// <exception cref="ResponseException">If the REST API request failed.</exception>
78
83
/// <seealso href="http://docs.openstack.org/api/openstack-object-storage/1.0/content/create-container.html">Create Container (OpenStack Object Storage API v1 Reference)</seealso>
0 commit comments