Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'mcs/class/corlib/Microsoft.Win32.SafeHandles/SafeFileHandle.cs')
-rw-r--r--mcs/class/corlib/Microsoft.Win32.SafeHandles/SafeFileHandle.cs10
1 files changed, 1 insertions, 9 deletions
diff --git a/mcs/class/corlib/Microsoft.Win32.SafeHandles/SafeFileHandle.cs b/mcs/class/corlib/Microsoft.Win32.SafeHandles/SafeFileHandle.cs
index 5457ba1ca34..001b3d984b1 100644
--- a/mcs/class/corlib/Microsoft.Win32.SafeHandles/SafeFileHandle.cs
+++ b/mcs/class/corlib/Microsoft.Win32.SafeHandles/SafeFileHandle.cs
@@ -35,24 +35,16 @@ namespace Microsoft.Win32.SafeHandles {
[MonoTODO]
public sealed class SafeFileHandle : SafeHandleZeroOrMinusOneIsInvalid {
- public SafeFileHandle (IntPtr preexistingHandle, bool ownsHandle) : base (ownsHandle)
+ public SafeFileHandle (IntPtr preexistingHandle, bool ownsHandle)
{
- SetHandle (preexistingHandle);
}
- [MonoTODO]
public override bool IsInvalid {
get {
throw new NotImplementedException ();
}
}
- [MonoTODO]
- protected override bool ReleaseHandle ()
- {
- throw new NotImplementedException ();
- }
-
}
}