You've already forked linux-packaging-mono
Imported Upstream version 4.8.0.309
Former-commit-id: 5f9c6ae75f295e057a7d2971f3a6df4656fa8850
This commit is contained in:
parent
ee1447783b
commit
94b2861243
@@ -26,9 +26,11 @@
|
||||
// WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
//
|
||||
|
||||
using System.ComponentModel;
|
||||
|
||||
namespace System.IO
|
||||
{
|
||||
public class FileSystemWatcher : IDisposable
|
||||
public class FileSystemWatcher : Component, IDisposable, ISupportInitialize
|
||||
{
|
||||
public FileSystemWatcher () { throw new NotImplementedException (); }
|
||||
public FileSystemWatcher (string path) { throw new NotImplementedException (); }
|
||||
@@ -39,11 +41,15 @@ namespace System.IO
|
||||
public int InternalBufferSize { get { throw new NotImplementedException (); } set { } }
|
||||
public NotifyFilters NotifyFilter { get { throw new NotImplementedException (); } set { } }
|
||||
public string Path { get { throw new NotImplementedException (); } set { } }
|
||||
public override ISite Site { get { throw new NotImplementedException (); } set { } }
|
||||
public ISynchronizeInvoke SynchronizingObject { get { throw new NotImplementedException (); } set { } }
|
||||
public event FileSystemEventHandler Changed;
|
||||
public event FileSystemEventHandler Created;
|
||||
public event FileSystemEventHandler Deleted;
|
||||
public event ErrorEventHandler Error;
|
||||
public event RenamedEventHandler Renamed;
|
||||
public void BeginInit() { throw new NotImplementedException (); }
|
||||
public void EndInit() { throw new NotImplementedException (); }
|
||||
protected void OnChanged (FileSystemEventArgs e) { throw new NotImplementedException (); }
|
||||
protected void OnCreated (FileSystemEventArgs e) { throw new NotImplementedException (); }
|
||||
protected void OnDeleted (System.IO.FileSystemEventArgs e) { throw new NotImplementedException (); }
|
||||
@@ -51,13 +57,7 @@ namespace System.IO
|
||||
protected void OnRenamed (RenamedEventArgs e) { throw new NotImplementedException (); }
|
||||
public WaitForChangedResult WaitForChanged (WatcherChangeTypes changeType) { throw new NotImplementedException (); }
|
||||
public WaitForChangedResult WaitForChanged (WatcherChangeTypes changeType, int timeout) { throw new NotImplementedException (); }
|
||||
|
||||
public virtual void Dispose ()
|
||||
{
|
||||
}
|
||||
|
||||
protected virtual void Dispose (bool disposing)
|
||||
{
|
||||
}
|
||||
public virtual void Dispose () { throw new NotImplementedException (); }
|
||||
protected override void Dispose (bool disposing) { throw new NotImplementedException (); }
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user