< Summary

Class:Microsoft.Azure.Search.Models.CorsOptions
Assembly:Microsoft.Azure.Search.Service
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\CorsOptions.cs
Covered lines:6
Uncovered lines:5
Coverable lines:11
Total lines:89
Line coverage:54.5% (6 of 11)
Covered branches:1
Total branches:2
Branch coverage:50% (1 of 2)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_AllowedOrigins()-100%100%
get_MaxAgeInSeconds()-100%100%
Validate()-66.67%50%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Service\src\Generated\Models\CorsOptions.cs

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.Search.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Collections;
 16    using System.Collections.Generic;
 17    using System.Linq;
 18
 19    /// <summary>
 20    /// Defines options to control Cross-Origin Resource Sharing (CORS) for an
 21    /// index.
 22    /// <see
 23    /// href="https://docs.microsoft.com/rest/api/searchservice/Create-Index"
 24    /// />
 25    /// </summary>
 26    public partial class CorsOptions
 27    {
 28        /// <summary>
 29        /// Initializes a new instance of the CorsOptions class.
 30        /// </summary>
 18831        public CorsOptions()
 32        {
 33            CustomInit();
 18834        }
 35
 36        /// <summary>
 37        /// Initializes a new instance of the CorsOptions class.
 38        /// </summary>
 39        /// <param name="allowedOrigins">The list of origins from which
 40        /// JavaScript code will be granted access to your index. Can contain a
 41        /// list of hosts of the form
 42        /// {protocol}://{fully-qualified-domain-name}[:{port#}], or a single
 43        /// '*' to allow all origins (not recommended).</param>
 44        /// <param name="maxAgeInSeconds">The duration for which browsers
 45        /// should cache CORS preflight responses. Defaults to 5
 46        /// minutes.</param>
 047        public CorsOptions(IList<string> allowedOrigins, long? maxAgeInSeconds = default(long?))
 48        {
 049            AllowedOrigins = allowedOrigins;
 050            MaxAgeInSeconds = maxAgeInSeconds;
 51            CustomInit();
 052        }
 53
 54        /// <summary>
 55        /// An initialization method that performs custom operations like setting defaults
 56        /// </summary>
 57        partial void CustomInit();
 58
 59        /// <summary>
 60        /// Gets or sets the list of origins from which JavaScript code will be
 61        /// granted access to your index. Can contain a list of hosts of the
 62        /// form {protocol}://{fully-qualified-domain-name}[:{port#}], or a
 63        /// single '*' to allow all origins (not recommended).
 64        /// </summary>
 65        [JsonProperty(PropertyName = "allowedOrigins")]
 50466        public IList<string> AllowedOrigins { get; set; }
 67
 68        /// <summary>
 69        /// Gets or sets the duration for which browsers should cache CORS
 70        /// preflight responses. Defaults to 5 minutes.
 71        /// </summary>
 72        [JsonProperty(PropertyName = "maxAgeInSeconds")]
 30073        public long? MaxAgeInSeconds { get; set; }
 74
 75        /// <summary>
 76        /// Validate the object.
 77        /// </summary>
 78        /// <exception cref="ValidationException">
 79        /// Thrown if validation fails
 80        /// </exception>
 81        public virtual void Validate()
 82        {
 9483            if (AllowedOrigins == null)
 84            {
 085                throw new ValidationException(ValidationRules.CannotBeNull, "AllowedOrigins");
 86            }
 9487        }
 88    }
 89}