< Summary

Class:Azure.Storage.Internal.Avro.AvroConstants
Assembly:Azure.Storage.Blobs
File(s):C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Internal.Avro\src\AvroConstants.cs
Covered lines:7
Uncovered lines:0
Coverable lines:7
Total lines:45
Line coverage:100% (7 of 7)
Covered branches:0
Total branches:0

Metrics

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

File(s)

C:\Git\azure-sdk-for-net\sdk\storage\Azure.Storage.Internal.Avro\src\AvroConstants.cs

#LineLine coverage
 1// Copyright (c) Microsoft Corporation. All rights reserved.
 2// Licensed under the MIT License.
 3
 4using System;
 5using System.Collections.Generic;
 6using System.Text;
 7
 8namespace Azure.Storage.Internal.Avro
 9{
 10    internal class AvroConstants
 11    {
 12        public const int SyncMarkerSize = 16;
 413        public static byte[] InitBytes =
 414        {
 415            (byte)'O',
 416            (byte)'b',
 417            (byte)'j',
 418            (byte)1
 419        };
 20        public const string CodecKey = "avro.codec";
 21        public const string SchemaKey = "avro.schema";
 22
 23        public const string Null = "null";
 24        public const string Boolean = "boolean";
 25        public const string Int = "int";
 26        public const string Long = "long";
 27        public const string Float = "float";
 28        public const string Double = "double";
 29        public const string Bytes = "bytes";
 30        public const string String = "string";
 31        public const string Record = "record";
 32        public const string Enum = "enum";
 33        public const string Map = "map";
 34        public const string Array = "array";
 35        public const string Union = "union";
 36        public const string Fixed = "fixed";
 37
 38        public const string Aliases = "aliases";
 39        public const string Name = "name";
 40        public const string Fields = "fields";
 41        public const string Type = "type";
 42        public const string Symbols = "symbols";
 43        public const string Values = "values";
 44    }
 45}

Methods/Properties

.cctor()