1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21
|
//------------------------------------------------------------------------------
// <copyright file="PropertyValueOrigin.cs" company="Microsoft">
// Copyright (c) Microsoft Corporation. All rights reserved.
// </copyright>
//------------------------------------------------------------------------------
using System;
using System.Configuration;
using System.Collections.Specialized;
using System.ComponentModel;
using System.Collections;
using System.Runtime.Serialization;
namespace System.Configuration {
public enum PropertyValueOrigin {
Default = 0, // Default is retrieved
Inherited = 1, // It is inherited
SetHere = 2 // It was set here
}
}
|