コード例 #1
0
ファイル: FTPConnection.cs プロジェクト: tinygg/Tools.Net
 /// <summary>Raise the <see cref="DirectoryListing"/> event.</summary>
 /// <param name="e">Event arguments.</param>
 protected internal void RaiseDirectoryListing(FTPDirectoryListEventArgs e)
 {
     if (areEventsEnabled && DirectoryListing != null)
         InvokeEventHandler(DirectoryListing, this, e);
 }
コード例 #2
0
ファイル: FTPConnection.cs プロジェクト: Nathan-M-Ross/i360gm
 protected internal void RaiseDirectoryListed(FTPDirectoryListEventArgs e)
 {
     if (this.areEventsEnabled && (this.DirectoryListed != null))
     {
         this.InvokeEventHandler(this.DirectoryListed, this, e);
     }
 }