e79aa3c0ed
Former-commit-id: a2155e9bd80020e49e72e86c44da02a8ac0e57a4
22 lines
693 B
C#
22 lines
693 B
C#
//------------------------------------------------------------------------------
|
|
// <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
|
|
}
|
|
}
|