< Summary

Class:Microsoft.Azure.CognitiveServices.Vision.Face.Models.PersistedFace
Assembly:Microsoft.Azure.CognitiveServices.Vision.Face
File(s):C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\PersistedFace.cs
Covered lines:3
Uncovered lines:9
Coverable lines:12
Total lines:83
Line coverage:25% (3 of 12)
Covered branches:0
Total branches:4
Branch coverage:0% (0 of 4)

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_PersistedFaceId()-100%100%
get_UserData()-0%100%
Validate()-0%0%

File(s)

C:\Git\azure-sdk-for-net\sdk\cognitiveservices\Vision.Face\src\Generated\Models\PersistedFace.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.CognitiveServices.Vision.Face.Models
 12{
 13    using Microsoft.Rest;
 14    using Newtonsoft.Json;
 15    using System.Linq;
 16
 17    /// <summary>
 18    /// PersonFace object.
 19    /// </summary>
 20    public partial class PersistedFace
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the PersistedFace class.
 24        /// </summary>
 7225        public PersistedFace()
 26        {
 27            CustomInit();
 7228        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the PersistedFace class.
 32        /// </summary>
 33        /// <param name="persistedFaceId">The persistedFaceId of the target
 34        /// face, which is persisted and will not expire. Different from faceId
 35        /// created by Face - Detect and will expire in 24 hours after the
 36        /// detection call.</param>
 37        /// <param name="userData">User-provided data attached to the face. The
 38        /// size limit is 1KB.</param>
 039        public PersistedFace(System.Guid persistedFaceId, string userData = default(string))
 40        {
 041            PersistedFaceId = persistedFaceId;
 042            UserData = userData;
 43            CustomInit();
 044        }
 45
 46        /// <summary>
 47        /// An initialization method that performs custom operations like setting defaults
 48        /// </summary>
 49        partial void CustomInit();
 50
 51        /// <summary>
 52        /// Gets or sets the persistedFaceId of the target face, which is
 53        /// persisted and will not expire. Different from faceId created by
 54        /// Face - Detect and will expire in 24 hours after the detection call.
 55        /// </summary>
 56        [JsonProperty(PropertyName = "persistedFaceId")]
 10057        public System.Guid PersistedFaceId { get; set; }
 58
 59        /// <summary>
 60        /// Gets or sets user-provided data attached to the face. The size
 61        /// limit is 1KB.
 62        /// </summary>
 63        [JsonProperty(PropertyName = "userData")]
 064        public string UserData { get; set; }
 65
 66        /// <summary>
 67        /// Validate the object.
 68        /// </summary>
 69        /// <exception cref="ValidationException">
 70        /// Thrown if validation fails
 71        /// </exception>
 72        public virtual void Validate()
 73        {
 074            if (UserData != null)
 75            {
 076                if (UserData.Length > 1024)
 77                {
 078                    throw new ValidationException(ValidationRules.MaxLength, "UserData", 1024);
 79                }
 80            }
 081        }
 82    }
 83}