< Summary

Class:Microsoft.Azure.Search.Models.Document
Assembly:Microsoft.Azure.Search.Data
File(s):C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Data\src\Customizations\Documents\Models\Document.cs
Covered lines:1
Uncovered lines:0
Coverable lines:1
Total lines:20
Line coverage:100% (1 of 1)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\search\Microsoft.Azure.Search.Data\src\Customizations\Documents\Models\Document.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License. See License.txt in the project root for
 3// license information.
 4
 5namespace Microsoft.Azure.Search.Models
 6{
 7    using System.Collections.Generic;
 8
 9    /// <summary>
 10    /// Represents a document as a property bag. This is useful for scenarios where the index schema is only known
 11    /// at run-time.
 12    /// </summary>
 13    public class Document : Dictionary<string, object>
 14    {
 15        /// <summary>
 16        /// Initializes a new instance of the Document class.
 17        /// </summary>
 3324418        public Document() { }
 19    }
 20}

Methods/Properties

.ctor()