|
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
namespace System.Formats.Asn1
{
public partial struct Asn1Tag
{
/// <summary>
/// Represents the End-of-Contents meta-tag.
/// </summary>
internal static readonly Asn1Tag EndOfContents = new Asn1Tag(0, (int)UniversalTagNumber.EndOfContents);
/// <summary>
/// Represents the universal class tag for a Boolean value.
/// </summary>
public static readonly Asn1Tag Boolean = new Asn1Tag(0, (int)UniversalTagNumber.Boolean);
/// <summary>
/// Represents the universal class tag for an Integer value.
/// </summary>
public static readonly Asn1Tag Integer = new Asn1Tag(0, (int)UniversalTagNumber.Integer);
/// <summary>
/// Represents the universal class tag for a Bit String value under a primitive encoding.
/// </summary>
public static readonly Asn1Tag PrimitiveBitString = new Asn1Tag(0, (int)UniversalTagNumber.BitString);
/// <summary>
/// Represents the universal class tag for a Bit String value under a constructed encoding.
/// </summary>
public static readonly Asn1Tag ConstructedBitString =
new Asn1Tag(ConstructedMask, (int)UniversalTagNumber.BitString);
/// <summary>
/// Represents the universal class tag for an Octet String value under a primitive encoding.
/// </summary>
public static readonly Asn1Tag PrimitiveOctetString = new Asn1Tag(0, (int)UniversalTagNumber.OctetString);
/// <summary>
/// Represents the universal class tag for a Octet String value under a constructed encoding.
/// </summary>
public static readonly Asn1Tag ConstructedOctetString =
new Asn1Tag(ConstructedMask, (int)UniversalTagNumber.OctetString);
/// <summary>
/// Represents the universal class tag for a <c>Null</c> value.
/// </summary>
public static readonly Asn1Tag Null = new Asn1Tag(0, (int)UniversalTagNumber.Null);
/// <summary>
/// Represents the universal class tag for an Object Identifier value.
/// </summary>
public static readonly Asn1Tag ObjectIdentifier = new Asn1Tag(0, (int)UniversalTagNumber.ObjectIdentifier);
/// <summary>
/// Represents the universal class tag for an Enumerated value.
/// </summary>
public static readonly Asn1Tag Enumerated = new Asn1Tag(0, (int)UniversalTagNumber.Enumerated);
/// <summary>
/// Represents the universal class tag for a Sequence value (always a constructed encoding).
/// </summary>
public static readonly Asn1Tag Sequence = new Asn1Tag(ConstructedMask, (int)UniversalTagNumber.Sequence);
/// <summary>
/// Represents the universal class tag for a SetOf value (always a constructed encoding).
/// </summary>
public static readonly Asn1Tag SetOf = new Asn1Tag(ConstructedMask, (int)UniversalTagNumber.SetOf);
/// <summary>
/// Represents the universal class tag for a UtcTime value.
/// </summary>
public static readonly Asn1Tag UtcTime = new Asn1Tag(0, (int)UniversalTagNumber.UtcTime);
/// <summary>
/// Represents the universal class tag for a GeneralizedTime value.
/// </summary>
public static readonly Asn1Tag GeneralizedTime = new Asn1Tag(0, (int)UniversalTagNumber.GeneralizedTime);
}
}
|