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
{{ message }}
This repository was archived by the owner on Apr 8, 2025. It is now read-only.
@@ -96,7 +95,7 @@ With version 2.0.0, you can also use a range-based for-loop to list blobs.
96
95
}
97
96
else
98
97
{
99
-
process_directory(item.as_blob_directory());
98
+
process_directory(item.as_directory());
100
99
}
101
100
}
102
101
@@ -106,31 +105,109 @@ For more details about listing APIs of the C++ client library, visit [Efficientl
106
105
107
106
With versions earlier than 2.0.0, the C++ client library will *keep* only the following parameters and ignore the others when handling the Azure Storage resource URI:
108
107
109
-
sas_version
110
-
sas_resource
111
-
sas_table_name
112
-
sas_start
113
-
sas_expiry
114
-
sas_permissions
115
-
sas_start_partition_key
116
-
sas_start_row_key
117
-
sas_end_partition_key
118
-
sas_end_row_key
119
-
sas_identifier
120
-
sas_cache_control
121
-
sas_content_disposition
122
-
sas_content_encoding
123
-
sas_content_language
124
-
sas_content_type
125
-
sas_signature
126
-
sas_api_version
108
+
<table>
109
+
<tr>
110
+
<td><b>Field Name</b></td>
111
+
<td><b>Query Parameter</b></td>
112
+
</tr>
113
+
<tr>
114
+
<td>signedversion</td>
115
+
<td>sv</td>
116
+
</tr>
117
+
<tr>
118
+
<td>signedresource</td>
119
+
<td>sr</td>
120
+
</tr>
121
+
<tr>
122
+
<td>tablename</td>
123
+
<td>tn</td>
124
+
</tr>
125
+
<tr>
126
+
<td>signedstart</td>
127
+
<td>st</td>
128
+
</tr>
129
+
<tr>
130
+
<td>signedexpiry</td>
131
+
<td>se</td>
132
+
</tr>
133
+
<tr>
134
+
<td>signedpermissions</td>
135
+
<td>sp</td>
136
+
</tr>
137
+
<tr>
138
+
<td>startpk</td>
139
+
<td>spk</td>
140
+
</tr>
141
+
<tr>
142
+
<td>startrk</td>
143
+
<td>srk</td>
144
+
</tr>
145
+
<tr>
146
+
<td>endpk</td>
147
+
<td>epk</td>
148
+
</tr>
149
+
<tr>
150
+
<td>endrk</td>
151
+
<td>erk</td>
152
+
</tr>
153
+
<tr>
154
+
<td>signedidentifier</td>
155
+
<td>si</td>
156
+
</tr>
157
+
<tr>
158
+
<td>Cache-Control</td>
159
+
<td>rscc</td>
160
+
</tr>
161
+
<tr>
162
+
<td>Content-Disposition</td>
163
+
<td>rscd</td>
164
+
</tr>
165
+
<tr>
166
+
<td>Content-Encoding</td>
167
+
<td>rsce</td>
168
+
</tr>
169
+
<tr>
170
+
<td>Content-Language</td>
171
+
<td>rscl</td>
172
+
</tr>
173
+
<tr>
174
+
<td>Content-Type</td>
175
+
<td>rsct</td>
176
+
</tr>
177
+
<tr>
178
+
<td>signature</td>
179
+
<td>sig</td>
180
+
</tr>
181
+
<tr>
182
+
<td>api-version</td>
183
+
<td>api-version</td>
184
+
</tr>
185
+
</table>
127
186
128
187
With version 2.0.0, the C++ client library will ignore only the following parameters:
129
188
130
-
resource_type
131
-
component
132
-
snapshot
133
-
sas_api_version
189
+
<table>
190
+
<tr>
191
+
<td><b>Field Name</b></td>
192
+
<td><b>Query Parameter</b></td>
193
+
</tr>
194
+
<tr>
195
+
<td>resoucetype</td>
196
+
<td>restype</td>
197
+
</tr>
198
+
<tr>
199
+
<td>component</td>
200
+
<td>comp</td>
201
+
</tr>
202
+
<tr>
203
+
<td>snapshot</td>
204
+
<td>snapshot</td>
205
+
</tr>
206
+
<tr>
207
+
<td>api-version</td>
208
+
<td>api-version</td>
209
+
</tr>
210
+
</table>
134
211
135
212
As a result of this change, you can write code like this:
0 commit comments