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
/// Determines whether an other <see cref="StorageCredentials"/> object is equal to this one by comparing their SAS tokens, account names, key names, and key values.
263
263
/// </summary>
264
264
/// <param name="other">The <see cref="StorageCredentials"/> object to compare to this one.</param>
265
-
/// <returns><code>true</code> if the two <see cref="StorageCredentials"/> objects are equal; otherwise, <code>false</code>.</returns>
265
+
/// <returns><c>true</c> if the two <see cref="StorageCredentials"/> objects are equal; otherwise, <c>false</c>.</returns>
/// Represents a continuation token for listing operations.
31
31
/// </summary>
32
-
/// <remarks> <see cref="BlobContinuationToken"/> continuation tokens are used in methods that return a <see cref="BlobResultSegment"/> object, such as <see cref="CloudBlobDirectory.listBlobsSegmented()"/>.</remarks>
32
+
/// <remarks> <see cref="BlobContinuationToken"/> continuation tokens are used in methods that return a <see cref="BlobResultSegment"/> object, such as <see cref="CloudBlobDirectory.ListBlobsSegmented(BlobContinuationToken)"/>.</remarks>
Copy file name to clipboardExpand all lines: microsoft-azure-api/Services/Storage/Lib/Common/Blob/SharedAccessBlobPolicies.cs
+7-7Lines changed: 7 additions & 7 deletions
Original file line number
Diff line number
Diff line change
@@ -46,7 +46,7 @@ public void Add(string key, SharedAccessBlobPolicy value)
46
46
/// Determines whether the collection of shared access policies contains the specified key.
47
47
/// </summary>
48
48
/// <param name="key">The key to locate in the collection of shared access policies.</param>
49
-
/// <returns><code>true</code> if the collection of shared access policies contains an element with the specified key; otherwise, <code>false</code>.</returns>
49
+
/// <returns><c>true</c> if the collection of shared access policies contains an element with the specified key; otherwise, <c>false</c>.</returns>
50
50
publicboolContainsKey(stringkey)
51
51
{
52
52
returnthis.policies.ContainsKey(key);
@@ -68,7 +68,7 @@ public ICollection<string> Keys
68
68
/// Removes the value with the specified key from the shared access policies collection.
69
69
/// </summary>
70
70
/// <param name="key">The key of the <see cref="SharedAccessBlobPolicy"/> item to remove.</param>
71
-
/// <returns><code>true</code> if the element is successfully found and removed; otherwise, <code>false</code>. This method returns <code>false</code> if the key is not found.</returns>
71
+
/// <returns><c>true</c> if the element is successfully found and removed; otherwise, <c>false</c>. This method returns <c>false</c> if the key is not found.</returns>
72
72
publicboolRemove(stringkey)
73
73
{
74
74
returnthis.policies.Remove(key);
@@ -101,7 +101,7 @@ public ICollection<SharedAccessBlobPolicy> Values
101
101
/// Gets or sets the <see cref="SharedAccessBlobPolicy"/> item associated with the specified key.
102
102
/// </summary>
103
103
/// <param name="key">The key of the <see cref="SharedAccessBlobPolicy"/> value to get or set.</param>
104
-
/// <returns>The <see cref="SharedAccessBlobPolicy"/> item associated with the specified key, or <code>null</code> if key is not in the shared access policies collection.</returns>
104
+
/// <returns>The <see cref="SharedAccessBlobPolicy"/> item associated with the specified key, or <c>null</c> if key is not in the shared access policies collection.</returns>
105
105
publicSharedAccessBlobPolicythis[stringkey]
106
106
{
107
107
get
@@ -136,7 +136,7 @@ public void Clear()
136
136
/// Determines whether the collection of shared access policies contains the key and <see cref="SharedAccessBlobPolicy"/> value in the specified <see cref="KeyValuePair{TKey,TValue}"/> object.
137
137
/// </summary>
138
138
/// <param name="item">A <see cref="KeyValuePair{TKey,TValue}"/> object containing the key and <see cref="SharedAccessBlobPolicy"/> value to search for.</param>
139
-
/// <returns><code>true</code> if the shared access policies collection contains the specified key/value; otherwise, <code>false</code>.</returns>
139
+
/// <returns><c>true</c> if the shared access policies collection contains the specified key/value; otherwise, <c>false</c>.</returns>
/// Gets a value indicating whether the collection of shared access policies is read-only.
184
184
/// </summary>
185
-
/// <value><code>true</code> if the collection of shared access policies is read-only; otherwise, <code>false</code>.</value>
185
+
/// <value><c>true</c> if the collection of shared access policies is read-only; otherwise, <c>false</c>.</value>
186
186
publicboolIsReadOnly
187
187
{
188
188
get
@@ -195,7 +195,7 @@ public bool IsReadOnly
195
195
/// Removes the <see cref="SharedAccessBlobPolicy"/> value, specified in the <see cref="KeyValuePair{TKey,TValue}"/> object, from the shared access policies collection.
196
196
/// </summary>
197
197
/// <param name="item">The <see cref="KeyValuePair{TKey,TValue}"/> object, containing a key and <see cref="SharedAccessBlobPolicy"/> value, to remove from the shared access policies collection.</param>
198
-
/// <returns><code>true</code> if the item was successfully removed; otherwise, <code>false</code>.</returns>
198
+
/// <returns><c>true</c> if the item was successfully removed; otherwise, <c>false</c>.</returns>
@@ -220,7 +220,7 @@ public IEnumerator<KeyValuePair<string, SharedAccessBlobPolicy>> GetEnumerator()
220
220
/// <summary>
221
221
/// Returns an enumerator that iterates through the collection of shared access policies.
222
222
/// </summary>
223
-
/// <returns>An <see cref="IEnumerator"/> object that can be used to iterate through the collection of shared access policies.</returns>
223
+
/// <returns>An <see cref="System.Collections.IEnumerator"/> object that can be used to iterate through the collection of shared access policies.</returns>
0 commit comments