You've already forked linux-packaging-mono
Imported Upstream version 4.6.0.125
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
This commit is contained in:
parent
a569aebcfd
commit
e79aa3c0ed
@@ -0,0 +1,228 @@
|
||||
//---------------------------------------------------------------------
|
||||
// <copyright file="BuiltInKind.cs" company="Microsoft">
|
||||
// Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
// </copyright>
|
||||
//
|
||||
// @owner jeffreed
|
||||
// @backupOwner leil
|
||||
//---------------------------------------------------------------------
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Text;
|
||||
|
||||
namespace System.Data.Metadata.Edm
|
||||
{
|
||||
/// <summary>
|
||||
/// List of all the built in types
|
||||
/// </summary>
|
||||
public enum BuiltInTypeKind
|
||||
{
|
||||
/// <summary>
|
||||
/// Association Type Kind
|
||||
/// </summary>
|
||||
AssociationEndMember = 0,
|
||||
|
||||
/// <summary>
|
||||
/// AssociationSetEnd Kind
|
||||
/// </summary>
|
||||
AssociationSetEnd,
|
||||
|
||||
/// <summary>
|
||||
/// AssociationSet Kind
|
||||
/// </summary>
|
||||
AssociationSet,
|
||||
|
||||
/// <summary>
|
||||
/// Association Type Kind
|
||||
/// </summary>
|
||||
AssociationType,
|
||||
|
||||
/// <summary>
|
||||
/// EntitySetBase Kind
|
||||
/// </summary>
|
||||
EntitySetBase,
|
||||
|
||||
/// <summary>
|
||||
/// Entity Type Base Kind
|
||||
/// </summary>
|
||||
EntityTypeBase,
|
||||
|
||||
/// <summary>
|
||||
/// Collection Type Kind
|
||||
/// </summary>
|
||||
CollectionType,
|
||||
|
||||
/// <summary>
|
||||
/// Collection Kind
|
||||
/// </summary>
|
||||
CollectionKind,
|
||||
|
||||
/// <summary>
|
||||
/// Complex Type Kind
|
||||
/// </summary>
|
||||
ComplexType,
|
||||
|
||||
/// <summary>
|
||||
/// Documentation Kind
|
||||
/// </summary>
|
||||
Documentation,
|
||||
|
||||
/// <summary>
|
||||
/// DeleteAction Type Kind
|
||||
/// </summary>
|
||||
OperationAction,
|
||||
|
||||
/// <summary>
|
||||
/// Edm Type Kind
|
||||
/// </summary>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")]
|
||||
EdmType,
|
||||
|
||||
/// <summary>
|
||||
/// Entity Container Kind
|
||||
/// </summary>
|
||||
EntityContainer,
|
||||
|
||||
/// <summary>
|
||||
/// Entity Set Kind
|
||||
/// </summary>
|
||||
EntitySet,
|
||||
|
||||
/// <summary>
|
||||
/// Entity Type Kind
|
||||
/// </summary>
|
||||
EntityType,
|
||||
|
||||
/// <summary>
|
||||
/// Enumeration Type Kind
|
||||
/// </summary>
|
||||
EnumType,
|
||||
|
||||
/// <summary>
|
||||
/// Enum Member Kind
|
||||
/// </summary>
|
||||
EnumMember,
|
||||
|
||||
/// <summary>
|
||||
/// Facet Kind
|
||||
/// </summary>
|
||||
Facet,
|
||||
|
||||
/// <summary>
|
||||
/// EdmFunction Kind
|
||||
/// </summary>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")]
|
||||
EdmFunction,
|
||||
|
||||
/// <summary>
|
||||
/// Function Parameter Kind
|
||||
/// </summary>
|
||||
FunctionParameter,
|
||||
|
||||
/// <summary>
|
||||
/// Global Item Type Kind
|
||||
/// </summary>
|
||||
GlobalItem,
|
||||
|
||||
/// <summary>
|
||||
/// Metadata Property Kind
|
||||
/// </summary>
|
||||
MetadataProperty,
|
||||
|
||||
/// <summary>
|
||||
/// Navigation Property Kind
|
||||
/// </summary>
|
||||
NavigationProperty,
|
||||
|
||||
/// <summary>
|
||||
/// Metadata Item Type Kind
|
||||
/// </summary>
|
||||
MetadataItem,
|
||||
|
||||
/// <summary>
|
||||
/// EdmMember Type Kind
|
||||
/// </summary>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")]
|
||||
EdmMember,
|
||||
|
||||
/// <summary>
|
||||
/// Parameter Mode Kind
|
||||
/// </summary>
|
||||
ParameterMode,
|
||||
|
||||
/// <summary>
|
||||
/// Primitive Type Kind
|
||||
/// </summary>
|
||||
PrimitiveType,
|
||||
|
||||
/// <summary>
|
||||
/// Primitive Type Kind Kind
|
||||
/// </summary>
|
||||
PrimitiveTypeKind,
|
||||
|
||||
/// <summary>
|
||||
/// EdmProperty Type Kind
|
||||
/// </summary>
|
||||
[System.Diagnostics.CodeAnalysis.SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Edm")]
|
||||
EdmProperty,
|
||||
|
||||
/// <summary>
|
||||
/// ProviderManifest Type Kind
|
||||
/// </summary>
|
||||
ProviderManifest,
|
||||
|
||||
/// <summary>
|
||||
/// Referential Constraint Type Kind
|
||||
/// </summary>
|
||||
ReferentialConstraint,
|
||||
|
||||
/// <summary>
|
||||
/// Ref Type Kind
|
||||
/// </summary>
|
||||
RefType,
|
||||
|
||||
/// <summary>
|
||||
/// RelationshipEnd Type Kind
|
||||
/// </summary>
|
||||
RelationshipEndMember,
|
||||
|
||||
/// <summary>
|
||||
/// Relationship Multiplicity Type Kind
|
||||
/// </summary>
|
||||
RelationshipMultiplicity,
|
||||
|
||||
/// <summary>
|
||||
/// Relationship Set Type Kind
|
||||
/// </summary>
|
||||
RelationshipSet,
|
||||
|
||||
/// <summary>
|
||||
/// Relationship Type
|
||||
/// </summary>
|
||||
RelationshipType,
|
||||
|
||||
/// <summary>
|
||||
/// Row Type Kind
|
||||
/// </summary>
|
||||
RowType,
|
||||
|
||||
/// <summary>
|
||||
/// Simple Type Kind
|
||||
/// </summary>
|
||||
SimpleType,
|
||||
|
||||
/// <summary>
|
||||
/// Structural Type Kind
|
||||
/// </summary>
|
||||
StructuralType,
|
||||
|
||||
/// <summary>
|
||||
/// Type Information Kind
|
||||
/// </summary>
|
||||
TypeUsage,
|
||||
|
||||
//
|
||||
//If you add anything below this, make sure you update the variable NumBuiltInTypes in EdmConstants
|
||||
//
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user