Microsoft.Azure.Common.xml
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 |
<?xml version="1.0"?>
<doc> <assembly> <name>Microsoft.Azure.Common</name> </assembly> <members> <member name="T:Microsoft.Azure.TokenCloudCredentials"> <summary> Class for token based credentials associated with a particular subscription. </summary> </member> <member name="T:Microsoft.Azure.SubscriptionCloudCredentials"> <summary> Base class for credentials associated with a particular subscription. </summary> </member> <member name="P:Microsoft.Azure.SubscriptionCloudCredentials.SubscriptionId"> <summary> Gets subscription ID which uniquely identifies Microsoft Azure subscription. The subscription ID forms part of the URI for every call that you make to the Service Management API. </summary> </member> <member name="M:Microsoft.Azure.TokenCloudCredentials.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Azure.TokenCloudCredentials"/> class with subscription ID. </summary> <param name="subscriptionId">The Subscription ID.</param> <param name="token">Valid JSON Web Token (JWT).</param> </member> <member name="M:Microsoft.Azure.TokenCloudCredentials.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Azure.TokenCloudCredentials"/> class without subscription ID. </summary> <param name="token">Valid JSON Web Token (JWT).</param> </member> <member name="M:Microsoft.Azure.TokenCloudCredentials.Create(System.Collections.Generic.IDictionary{System.String,System.Object})"> <summary> Attempt to create token credentials from a collection of settings. </summary> <param name="settings">The settings to use.</param> <returns> TokenCloudCredentials is created, null otherwise. </returns> </member> <member name="M:Microsoft.Azure.TokenCloudCredentials.ProcessHttpRequestAsync(System.Net.Http.HttpRequestMessage,System.Threading.CancellationToken)"> <summary> Apply the credentials to the HTTP request. </summary> <param name="request">The HTTP request.</param> <param name="cancellationToken">Cancellation token.</param> <returns> Task that will complete when processing has completed. </returns> </member> <member name="P:Microsoft.Azure.TokenCloudCredentials.SubscriptionId"> <summary> Gets subscription ID which uniquely identifies Microsoft Azure subscription. The subscription ID forms part of the URI for every call that you make to the Service Management API. </summary> </member> <member name="P:Microsoft.Azure.TokenCloudCredentials.Token"> <summary> Gets or sets secure token used to authenticate against Microsoft Azure API. No anonymous requests are allowed. </summary> </member> <member name="T:Microsoft.Azure.AzureOperationResponse"> <summary> A standard service response including an HTTP status code and request ID. </summary> </member> <member name="P:Microsoft.Azure.AzureOperationResponse.RequestId"> <summary> Gets or sets the value that uniquely identifies a request made against the service. </summary> </member> <member name="T:Microsoft.Azure.OperationStatus"> <summary> The status of the asynchronous request. </summary> </member> <member name="F:Microsoft.Azure.OperationStatus.InProgress"> <summary> The asynchronous request is in progress. </summary> </member> <member name="F:Microsoft.Azure.OperationStatus.Succeeded"> <summary> The asynchronous request succeeded. </summary> </member> <member name="F:Microsoft.Azure.OperationStatus.Failed"> <summary> The asynchronous request failed. </summary> </member> <member name="T:Microsoft.Azure.OperationStatusResponse"> <summary> The response body contains the status of the specified asynchronous operation, indicating whether it has succeeded, is i progress, or has failed. Note that this status is distinct from the HTTP status code returned for the Get Operation Status operation itself. If the asynchronous operation succeeded, the response body includes the HTTP status code for the successful request. If the asynchronous operation failed, the response body includes the HTTP status code for the failed request, and also includes error information regarding the failure. </summary> </member> <member name="P:Microsoft.Azure.OperationStatusResponse.Error"> <summary> If the asynchronous operation failed, the response body includes the HTTP status code for the failed request, and also includes error information regarding the failure. </summary> </member> <member name="P:Microsoft.Azure.OperationStatusResponse.HttpStatusCode"> <summary> The HTTP status code for the asynchronous request. </summary> </member> <member name="P:Microsoft.Azure.OperationStatusResponse.Id"> <summary> The request ID of the asynchronous request. This value is returned in the x-ms-request-id response header of the asynchronous request. </summary> </member> <member name="P:Microsoft.Azure.OperationStatusResponse.Status"> <summary> The status of the asynchronous request. </summary> </member> <member name="T:Microsoft.Azure.OperationStatusResponse.ErrorDetails"> <summary> If the asynchronous operation failed, the response body includes the HTTP status code for the failed request, and also includes error information regarding the failure. </summary> </member> <member name="M:Microsoft.Azure.OperationStatusResponse.ErrorDetails.#ctor"> <summary> Initializes a new instance of the ErrorDetails class. </summary> </member> <member name="P:Microsoft.Azure.OperationStatusResponse.ErrorDetails.Code"> <summary> The management service error code returned if the asynchronous request failed. </summary> </member> <member name="P:Microsoft.Azure.OperationStatusResponse.ErrorDetails.Message"> <summary> The management service error message returned if the asynchronous request failed. </summary> </member> <member name="T:Microsoft.Azure.ResourceBase"> <summary> Resource information. </summary> </member> <member name="M:Microsoft.Azure.ResourceBase.#ctor"> <summary> Initializes a new instance of the ResourceBase class. </summary> </member> <member name="M:Microsoft.Azure.ResourceBase.#ctor(System.String)"> <summary> Initializes a new instance of the ResourceBase class with required arguments. </summary> </member> <member name="P:Microsoft.Azure.ResourceBase.Location"> <summary> Required. Gets or sets the location of the resource. </summary> </member> <member name="P:Microsoft.Azure.ResourceBase.Tags"> <summary> Optional. Gets or sets the tags attached to the resource. </summary> </member> <member name="T:Microsoft.Azure.ResourceBaseExtended"> <summary> Resource information with extended details. </summary> </member> <member name="M:Microsoft.Azure.ResourceBaseExtended.#ctor"> <summary> Initializes a new instance of the ResourceBaseExtended class. </summary> </member> <member name="M:Microsoft.Azure.ResourceBaseExtended.#ctor(System.String)"> <summary> Initializes a new instance of the ResourceBaseExtended class with required arguments. </summary> </member> <member name="P:Microsoft.Azure.ResourceBaseExtended.Id"> <summary> Optional. Gets or sets the ID of the resource. </summary> </member> <member name="P:Microsoft.Azure.ResourceBaseExtended.Name"> <summary> Optional. Gets or sets the name of the resource. </summary> </member> <member name="P:Microsoft.Azure.ResourceBaseExtended.Type"> <summary> Optional. Gets or sets the type of the resource. </summary> </member> <member name="T:Microsoft.Azure.ResourceIdentity"> <summary> Resource identity. </summary> </member> <member name="M:Microsoft.Azure.ResourceIdentity.#ctor"> <summary> Initializes a new instance of the ResourceIdentity class. </summary> </member> <member name="M:Microsoft.Azure.ResourceIdentity.#ctor(System.String,System.String,System.String)"> <summary> Initializes a new instance of the ResourceIdentity class. </summary> </member> <member name="M:Microsoft.Azure.ResourceIdentity.GetProviderFromResourceType(System.String)"> <summary> Returns provider string from resource type. </summary> <param name="resourceType">Resource type.</param> <returns>Provider</returns> </member> <member name="M:Microsoft.Azure.ResourceIdentity.GetTypeFromResourceType(System.String)"> <summary> Returns type string from resource type. </summary> <param name="resourceType">Resource type.</param> <returns>Type</returns> </member> <member name="P:Microsoft.Azure.ResourceIdentity.ParentResourcePath"> <summary> Optional. Gets or sets parent resource path (optional). </summary> </member> <member name="P:Microsoft.Azure.ResourceIdentity.ResourceName"> <summary> Required. Gets or sets resource name. </summary> </member> <member name="P:Microsoft.Azure.ResourceIdentity.ResourceProviderApiVersion"> <summary> Required. Gets or sets API version of the resource provider. </summary> </member> <member name="P:Microsoft.Azure.ResourceIdentity.ResourceProviderNamespace"> <summary> Required. Gets or sets namespace of the resource provider. </summary> </member> <member name="P:Microsoft.Azure.ResourceIdentity.ResourceType"> <summary> Required. Gets or sets resource type. </summary> </member> <member name="T:Microsoft.Azure.Common.OData.FilterParameterAttribute"> <summary> Parameter attribute used with OData filters. </summary> </member> <member name="M:Microsoft.Azure.Common.OData.FilterParameterAttribute.#ctor(System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Azure.Common.OData.FilterParameterAttribute"/> class. </summary> <param name="name">Property name to use in the filter.</param> </member> <member name="M:Microsoft.Azure.Common.OData.FilterParameterAttribute.#ctor(System.String,System.String)"> <summary> Initializes a new instance of the <see cref="T:Microsoft.Azure.Common.OData.FilterParameterAttribute"/> class. </summary> <param name="name">Property name to use in the filter.</param> <param name="format">Format of the value.</param> </member> <member name="P:Microsoft.Azure.Common.OData.FilterParameterAttribute.Name"> <summary> Property name to use in the filter. </summary> </member> <member name="P:Microsoft.Azure.Common.OData.FilterParameterAttribute.Format"> <summary> Format of the value. </summary> </member> <member name="T:Microsoft.Azure.Common.OData.FilterString"> <summary> Handles OData filter generation. </summary> </member> <member name="M:Microsoft.Azure.Common.OData.FilterString.Generate``1(System.Linq.Expressions.Expression{System.Func{``0,System.Boolean}})"> <summary> Generates an OData filter from a specified Linq expression. </summary> <typeparam name="T">Filter type</typeparam> <param name="filter">Entity to use for filter generation</param> <returns></returns> </member> <member name="T:Microsoft.Azure.Common.OData.UrlExpressionVisitor"> <summary> Expression visitor class that generates OData style $filter parameter. </summary> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitBinary(System.Linq.Expressions.BinaryExpression)"> <summary> Visits binary expression like ==, &&, >, etc. </summary> <param name="node">Node to visit.</param> <returns>Original node.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitUnary(System.Linq.Expressions.UnaryExpression)"> <summary> Visits binary expression !foo. </summary> <param name="node">Node to visit.</param> <returns>Original node.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitConditional(System.Linq.Expressions.ConditionalExpression)"> <summary> Visits conditional expression foo == true ? bar : fee. Throws NotSupportedException. </summary> <param name="node">Node to visit.</param> <returns>Throws NotSupportedException.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitNew(System.Linq.Expressions.NewExpression)"> <summary> Visits new object expression like new DateTime(). </summary> <param name="node">Node to visit.</param> <returns>Original node.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitConstant(System.Linq.Expressions.ConstantExpression)"> <summary> Visits constants like 'a' or 123. </summary> <param name="node">Node to visit.</param> <returns>Original node.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitMember(System.Linq.Expressions.MemberExpression)"> <summary> Visits object members like p.Foo or dateTime.Hour. </summary> <param name="node">Node to visit.</param> <returns>Original node.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.VisitMethodCall(System.Linq.Expressions.MethodCallExpression)"> <summary> Visits method calls like Contains, StartsWith, etc. Methods that are not supported will throw an exception. </summary> <param name="node">Node to visit.</param> <returns>Original node.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.closeUnaryBooleanOperator"> <summary> Appends 'eq true' to Boolean unary operators. </summary> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.PrintConstant(System.Object)"> <summary> Helper method to print constant. </summary> <param name="val">Object to print.</param> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.GetPropertyName(System.Reflection.PropertyInfo)"> <summary> Helper method to generate property name. </summary> <param name="property">Property to examine.</param> <returns>Property name or value specified in the FilterParameterAttribute.</returns> </member> <member name="M:Microsoft.Azure.Common.OData.UrlExpressionVisitor.GetPropertyFormat(System.Reflection.PropertyInfo)"> <summary> Helper method to retrieve format from the FilterParameterAttribute. </summary> <param name="property">Property to examine.</param> <returns>Format from FilterParameterAttribute or null.</returns> </member> <member name="T:Microsoft.Azure.Common.Properties.Resources"> <summary> A strongly-typed resource class, for looking up localized strings, etc. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ResourceManager"> <summary> Returns the cached ResourceManager instance used by this class. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.Culture"> <summary> Overrides the current thread's CurrentUICulture property for all resource lookups using this strongly typed resource class. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ArgumentCannotBeEmpty"> <summary> Looks up a localized string similar to Value cannot be empty. Parameter name: {0}. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ArgumentCannotBeGreaterThanBaseline"> <summary> Looks up a localized string similar to The specified argument {0} cannot be greater than its ceiling value of {1}.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ArgumentCannotBeNegative"> <summary> Looks up a localized string similar to The specified argument {0} cannot be initialized with a negative value.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ConfigurationHelper_CreateCouldNotConvertException"> <summary> Looks up a localized string similar to Failed to convert parameter {0} value '{1}' to type {2}.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ConfigurationHelper_CreateFromSettings_CreateSettingsFailedException"> <summary> Looks up a localized string similar to {3} Failed to create {0} from connection settings {1} = "{2}".. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ConfigurationHelper_CreateFromSettings_NoConnectionSettingsFound"> <summary> Looks up a localized string similar to No connection settings found for type {0}. Enable tracing for more information.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ConfigurationHelper_GetCredentials_NotFound"> <summary> Looks up a localized string similar to No credentials of type '{0}' could be initialized from the provided settings.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ConfigurationHelper_GetParameter_NotFound"> <summary> Looks up a localized string similar to Parameter {0} is required.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.DefaultRetryStrategyMappingNotFound"> <summary> Looks up a localized string similar to Default retry strategy for technology {0}, named '{1}', is not defined.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.DefaultRetryStrategyNotFound"> <summary> Looks up a localized string similar to Default retry strategy for technology {0} was not not defined, and there is no overall default strategy.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ExceptionRetryHandlerMissing"> <summary> Looks up a localized string similar to Retry handler is not present in the HttpClient handler stack.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ExceptionRetryManagerAlreadySet"> <summary> Looks up a localized string similar to The RetryManager is already set.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ExceptionRetryManagerNotSet"> <summary> Looks up a localized string similar to The default RetryManager has not been set. Set it by invoking the RetryManager.SetDefault static method, or if you are using declarative configuration, you can invoke the RetryPolicyFactory.CreateDefault() method to automatically create the retry manager from the configuration file.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.ResponseStatusCodeError"> <summary> Looks up a localized string similar to Response status code indicates server error: {0} ({1}).. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.RetryLimitExceeded"> <summary> Looks up a localized string similar to The action has exceeded its defined retry limit.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.RetryStrategyNotFound"> <summary> Looks up a localized string similar to The retry strategy with name '{0}' cannot be found.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.StringCannotBeEmpty"> <summary> Looks up a localized string similar to The specified string argument {0} must not be empty.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.TaskCannotBeNull"> <summary> Looks up a localized string similar to The specified argument '{0}' cannot return a null task when invoked.. </summary> </member> <member name="P:Microsoft.Azure.Common.Properties.Resources.TaskMustBeScheduled"> <summary> Looks up a localized string similar to The specified argument '{0}' must return a scheduled task (also known as "hot" task) when invoked.. </summary> </member> </members> </doc> |