File: System\IO\Packaging\PackageRelationshipSelectorType.cs
Web Access
Project: src\src\libraries\System.IO.Packaging\src\System.IO.Packaging.csproj (System.IO.Packaging)
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
 
namespace System.IO.Packaging
{
    /// <summary>
    /// Enum to represent the different selector types for PackageRelationshipSelector
    /// </summary>
    public enum PackageRelationshipSelectorType : int
    {
        /// <summary>
        /// Id
        /// </summary>
        Id = 0,
 
        /// <summary>
        /// Type
        /// </summary>
        Type = 1
    }
}