2015-04-07 09:35:12 +01:00
|
|
|
// ==++==
|
|
|
|
//
|
|
|
|
// Copyright (c) Microsoft Corporation. All rights reserved.
|
|
|
|
//
|
|
|
|
// ==--==
|
|
|
|
/*============================================================
|
|
|
|
**
|
|
|
|
** Class: Enums
|
|
|
|
**
|
|
|
|
**
|
|
|
|
** Purpose: Enums shared by IO classes
|
|
|
|
**
|
|
|
|
**
|
|
|
|
===========================================================*/
|
|
|
|
|
|
|
|
using System;
|
|
|
|
using System.Text;
|
|
|
|
|
|
|
|
namespace System.IO {
|
|
|
|
|
2016-02-22 11:00:01 -05:00
|
|
|
#if !FEATURE_CORESYSTEM
|
2015-04-07 09:35:12 +01:00
|
|
|
[Serializable]
|
2016-02-22 11:00:01 -05:00
|
|
|
#endif
|
2015-04-07 09:35:12 +01:00
|
|
|
public enum HandleInheritability {
|
|
|
|
None = 0,
|
|
|
|
Inheritable = 1,
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|