Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
#if MONO && (!MOBILE || UNITY_AOT)

using System;
using System.IO;
namespace System.IO.CoreFX
#else

namespace System.IO
#endif
{
public partial class FileSystemWatcher
{
/// <summary>Called when FileSystemWatcher is finalized.</summary>
private void FinalizeDispose()
{
}

private void StartRaisingEvents()
{
throw new PlatformNotSupportedException();
}

private void StopRaisingEvents()
{
throw new PlatformNotSupportedException();
}
}
}
Loading