Browse Source

FileSystemShare: Renamed event from OnAccessRequest to AccessRequested

Tal Aloni 7 years ago
parent
commit
b5db0ac4b8
2 changed files with 3 additions and 3 deletions
  1. 2 2
      SMBLibrary/Server/Shares/FileSystemShare.cs
  2. 1 1
      SMBServer/ServerUI.cs

+ 2 - 2
SMBLibrary/Server/Shares/FileSystemShare.cs

@@ -37,7 +37,7 @@ namespace SMBLibrary.Server
         private string m_name;
         private INTFileStore m_fileSystem;
 
-        public event EventHandler<AccessRequestArgs> OnAccessRequest;
+        public event EventHandler<AccessRequestArgs> AccessRequested;
 
         public FileSystemShare(string shareName, INTFileStore fileSystem)
         {
@@ -64,7 +64,7 @@ namespace SMBLibrary.Server
         public bool HasAccess(SecurityContext securityContext, string path, FileAccess requestedAccess)
         {
             // To be thread-safe we must capture the delegate reference first
-            EventHandler<AccessRequestArgs> handler = OnAccessRequest;
+            EventHandler<AccessRequestArgs> handler = AccessRequested;
             if (handler != null)
             {
                 AccessRequestArgs args = new AccessRequestArgs(securityContext.UserName, path, requestedAccess, securityContext.MachineName, securityContext.ClientEndPoint);

+ 1 - 1
SMBServer/ServerUI.cs

@@ -168,7 +168,7 @@ namespace SMBServer
                 XmlNode writeAccessNode = shareNode.SelectSingleNode("WriteAccess");
                 List<string> writeAccess = ReadAccessList(writeAccessNode);
                 FileSystemShare share = new FileSystemShare(shareName, new DirectoryFileSystem(sharePath));
-                share.OnAccessRequest += delegate(object sender, AccessRequestArgs args)
+                share.AccessRequested += delegate(object sender, AccessRequestArgs args)
                 {
                     bool hasReadAccess = Contains(readAccess, "Users") || Contains(readAccess, args.UserName);
                     bool hasWriteAccess = Contains(writeAccess, "Users") || Contains(writeAccess, args.UserName);