From 243f4787dd32df7683ece18932ebc51864c444bc Mon Sep 17 00:00:00 2001 From: Era Date: Tue, 19 Aug 2025 07:34:27 +0300 Subject: [PATCH] Initial commit - Pingerino network monitoring application --- .gitattributes | 63 + .gitignore | 363 + App.config | 30 + Compiled/.gitkeep | 1 + Compiled/IPAddressControlLib.dll | Bin 0 -> 24576 bytes Compiled/Microsoft.Win32.TaskScheduler.dll | Bin 0 -> 333824 bytes Compiled/Microsoft.Win32.TaskScheduler.xml | 7866 ++++++++++++++++++ Compiled/Pingerino.exe | Bin 0 -> 117248 bytes Compiled/Pingerino.exe.config | 30 + FormPinger.Designer.cs | 844 ++ FormPinger.cs | 808 ++ FormPinger.resx | 377 + IPAddressControlLib.dll | Bin 0 -> 24576 bytes Infrastructure/ServiceContainer.cs | 88 + NetworkStatistics.cs | 12 + Pingerino.csproj | 151 + Pingerino.sln | 25 + Program.cs | 32 + Properties/AssemblyInfo.cs | 35 + Properties/IPAddressControlLib.dll | Bin 0 -> 24576 bytes Properties/Resources.Designer.cs | 83 + Properties/Resources.resx | 127 + Properties/Settings.Designer.cs | 86 + Properties/Settings.settings | 21 + Resources/Untitled.png | Bin 0 -> 18259 bytes Resources/Untitlemd.png | Bin 0 -> 10059 bytes Services/ConfigurationService.cs | 117 + Services/Interfaces/IConfigurationService.cs | 21 + Services/Interfaces/ILoggingService.cs | 20 + Services/Interfaces/INetworkService.cs | 31 + Services/Interfaces/IPingService.cs | 67 + Services/Interfaces/ISystemService.cs | 16 + Services/LoggingService.cs | 59 + Services/NetworkService.cs | 195 + Services/PingService.cs | 255 + Services/SystemService.cs | 238 + Settings.cs | 33 + Utilities/UIHelper.cs | 163 + Utilities/ValidationHelper.cs | 90 + packages.config | 5 + xray_drawing_1_origi_fETdd.ico | Bin 0 -> 13622 bytes 41 files changed, 12352 insertions(+) create mode 100644 .gitattributes create mode 100644 .gitignore create mode 100644 App.config create mode 100644 Compiled/.gitkeep create mode 100644 Compiled/IPAddressControlLib.dll create mode 100644 Compiled/Microsoft.Win32.TaskScheduler.dll create mode 100644 Compiled/Microsoft.Win32.TaskScheduler.xml create mode 100644 Compiled/Pingerino.exe create mode 100644 Compiled/Pingerino.exe.config create mode 100644 FormPinger.Designer.cs create mode 100644 FormPinger.cs create mode 100644 FormPinger.resx create mode 100644 IPAddressControlLib.dll create mode 100644 Infrastructure/ServiceContainer.cs create mode 100644 NetworkStatistics.cs create mode 100644 Pingerino.csproj create mode 100644 Pingerino.sln create mode 100644 Program.cs create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/IPAddressControlLib.dll create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 Resources/Untitled.png create mode 100644 Resources/Untitlemd.png create mode 100644 Services/ConfigurationService.cs create mode 100644 Services/Interfaces/IConfigurationService.cs create mode 100644 Services/Interfaces/ILoggingService.cs create mode 100644 Services/Interfaces/INetworkService.cs create mode 100644 Services/Interfaces/IPingService.cs create mode 100644 Services/Interfaces/ISystemService.cs create mode 100644 Services/LoggingService.cs create mode 100644 Services/NetworkService.cs create mode 100644 Services/PingService.cs create mode 100644 Services/SystemService.cs create mode 100644 Settings.cs create mode 100644 Utilities/UIHelper.cs create mode 100644 Utilities/ValidationHelper.cs create mode 100644 packages.config create mode 100644 xray_drawing_1_origi_fETdd.ico diff --git a/.gitattributes b/.gitattributes new file mode 100644 index 0000000..1ff0c42 --- /dev/null +++ b/.gitattributes @@ -0,0 +1,63 @@ +############################################################################### +# Set default behavior to automatically normalize line endings. +############################################################################### +* text=auto + +############################################################################### +# Set default behavior for command prompt diff. +# +# This is need for earlier builds of msysgit that does not have it on by +# default for csharp files. +# Note: This is only used by command line +############################################################################### +#*.cs diff=csharp + +############################################################################### +# Set the merge driver for project and solution files +# +# Merging from the command prompt will add diff markers to the files if there +# are conflicts (Merging from VS is not affected by the settings below, in VS +# the diff markers are never inserted). Diff markers may cause the following +# file extensions to fail to load in VS. An alternative would be to treat +# these files as binary and thus will always conflict and require user +# intervention with every merge. To do so, just uncomment the entries below +############################################################################### +#*.sln merge=binary +#*.csproj merge=binary +#*.vbproj merge=binary +#*.vcxproj merge=binary +#*.vcproj merge=binary +#*.dbproj merge=binary +#*.fsproj merge=binary +#*.lsproj merge=binary +#*.wixproj merge=binary +#*.modelproj merge=binary +#*.sqlproj merge=binary +#*.wwaproj merge=binary + +############################################################################### +# behavior for image files +# +# image files are treated as binary by default. +############################################################################### +#*.jpg binary +#*.png binary +#*.gif binary + +############################################################################### +# diff behavior for common document formats +# +# Convert binary document formats to text before diffing them. This feature +# is only available from the command line. Turn it on by uncommenting the +# entries below. +############################################################################### +#*.doc diff=astextplain +#*.DOC diff=astextplain +#*.docx diff=astextplain +#*.DOCX diff=astextplain +#*.dot diff=astextplain +#*.DOT diff=astextplain +#*.pdf diff=astextplain +#*.PDF diff=astextplain +#*.rtf diff=astextplain +#*.RTF diff=astextplain diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..9491a2f --- /dev/null +++ b/.gitignore @@ -0,0 +1,363 @@ +## Ignore Visual Studio temporary files, build results, and +## files generated by popular Visual Studio add-ons. +## +## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore + +# User-specific files +*.rsuser +*.suo +*.user +*.userosscache +*.sln.docstates + +# User-specific files (MonoDevelop/Xamarin Studio) +*.userprefs + +# Mono auto generated files +mono_crash.* + +# Build results +[Dd]ebug/ +[Dd]ebugPublic/ +[Rr]elease/ +[Rr]eleases/ +x64/ +x86/ +[Ww][Ii][Nn]32/ +[Aa][Rr][Mm]/ +[Aa][Rr][Mm]64/ +bld/ +[Bb]in/ +[Oo]bj/ +[Oo]ut/ +[Ll]og/ +[Ll]ogs/ + +# Visual Studio 2015/2017 cache/options directory +.vs/ +# Uncomment if you have tasks that create the project's static files in wwwroot +#wwwroot/ + +# Visual Studio 2017 auto generated files +Generated\ Files/ + +# MSTest test Results +[Tt]est[Rr]esult*/ +[Bb]uild[Ll]og.* + +# NUnit +*.VisualState.xml +TestResult.xml +nunit-*.xml + +# Build Results of an ATL Project +[Dd]ebugPS/ +[Rr]eleasePS/ +dlldata.c + +# Benchmark Results +BenchmarkDotNet.Artifacts/ + +# .NET Core +project.lock.json +project.fragment.lock.json +artifacts/ + +# ASP.NET Scaffolding +ScaffoldingReadMe.txt + +# StyleCop +StyleCopReport.xml + +# Files built by Visual Studio +*_i.c +*_p.c +*_h.h +*.ilk +*.meta +*.obj +*.iobj +*.pch +*.pdb +*.ipdb +*.pgc +*.pgd +*.rsp +*.sbr +*.tlb +*.tli +*.tlh +*.tmp +*.tmp_proj +*_wpftmp.csproj +*.log +*.vspscc +*.vssscc +.builds +*.pidb +*.svclog +*.scc + +# Chutzpah Test files +_Chutzpah* + +# Visual C++ cache files +ipch/ +*.aps +*.ncb +*.opendb +*.opensdf +*.sdf +*.cachefile +*.VC.db +*.VC.VC.opendb + +# Visual Studio profiler +*.psess +*.vsp +*.vspx +*.sap + +# Visual Studio Trace Files +*.e2e + +# TFS 2012 Local Workspace +$tf/ + +# Guidance Automation Toolkit +*.gpState + +# ReSharper is a .NET coding add-in +_ReSharper*/ +*.[Rr]e[Ss]harper +*.DotSettings.user + +# TeamCity is a build add-in +_TeamCity* + +# DotCover is a Code Coverage Tool +*.dotCover + +# AxoCover is a Code Coverage Tool +.axoCover/* +!.axoCover/settings.json + +# Coverlet is a free, cross platform Code Coverage Tool +coverage*.json +coverage*.xml +coverage*.info + +# Visual Studio code coverage results +*.coverage +*.coveragexml + +# NCrunch +_NCrunch_* +.*crunch*.local.xml +nCrunchTemp_* + +# MightyMoose +*.mm.* +AutoTest.Net/ + +# Web workbench (sass) +.sass-cache/ + +# Installshield output folder +[Ee]xpress/ + +# DocProject is a documentation generator add-in +DocProject/buildhelp/ +DocProject/Help/*.HxT +DocProject/Help/*.HxC +DocProject/Help/*.hhc +DocProject/Help/*.hhk +DocProject/Help/*.hhp +DocProject/Help/Html2 +DocProject/Help/html + +# Click-Once directory +publish/ + +# Publish Web Output +*.[Pp]ublish.xml +*.azurePubxml +# Note: Comment the next line if you want to checkin your web deploy settings, +# but database connection strings (with potential passwords) will be unencrypted +*.pubxml +*.publishproj + +# Microsoft Azure Web App publish settings. Comment the next line if you want to +# checkin your Azure Web App publish settings, but sensitive information contained +# in these scripts will be unencrypted +PublishScripts/ + +# NuGet Packages +*.nupkg +# NuGet Symbol Packages +*.snupkg +# The packages folder can be ignored because of Package Restore +**/[Pp]ackages/* +# except build/, which is used as an MSBuild target. +!**/[Pp]ackages/build/ +# Uncomment if necessary however generally it will be regenerated when needed +#!**/[Pp]ackages/repositories.config +# NuGet v3's project.json files produces more ignorable files +*.nuget.props +*.nuget.targets + +# Microsoft Azure Build Output +csx/ +*.build.csdef + +# Microsoft Azure Emulator +ecf/ +rcf/ + +# Windows Store app package directories and files +AppPackages/ +BundleArtifacts/ +Package.StoreAssociation.xml +_pkginfo.txt +*.appx +*.appxbundle +*.appxupload + +# Visual Studio cache files +# files ending in .cache can be ignored +*.[Cc]ache +# but keep track of directories ending in .cache +!?*.[Cc]ache/ + +# Others +ClientBin/ +~$* +*~ +*.dbmdl +*.dbproj.schemaview +*.jfm +*.pfx +*.publishsettings +orleans.codegen.cs + +# Including strong name files can present a security risk +# (https://github.com/github/gitignore/pull/2483#issue-259490424) +#*.snk + +# Since there are multiple workflows, uncomment next line to ignore bower_components +# (https://github.com/github/gitignore/pull/1529#issuecomment-104372622) +#bower_components/ + +# RIA/Silverlight projects +Generated_Code/ + +# Backup & report files from converting an old project file +# to a newer Visual Studio version. Backup files are not needed, +# because we have git ;-) +_UpgradeReport_Files/ +Backup*/ +UpgradeLog*.XML +UpgradeLog*.htm +ServiceFabricBackup/ +*.rptproj.bak + +# SQL Server files +*.mdf +*.ldf +*.ndf + +# Business Intelligence projects +*.rdl.data +*.bim.layout +*.bim_*.settings +*.rptproj.rsuser +*- [Bb]ackup.rdl +*- [Bb]ackup ([0-9]).rdl +*- [Bb]ackup ([0-9][0-9]).rdl + +# Microsoft Fakes +FakesAssemblies/ + +# GhostDoc plugin setting file +*.GhostDoc.xml + +# Node.js Tools for Visual Studio +.ntvs_analysis.dat +node_modules/ + +# Visual Studio 6 build log +*.plg + +# Visual Studio 6 workspace options file +*.opt + +# Visual Studio 6 auto-generated workspace file (contains which files were open etc.) +*.vbw + +# Visual Studio LightSwitch build output +**/*.HTMLClient/GeneratedArtifacts +**/*.DesktopClient/GeneratedArtifacts +**/*.DesktopClient/ModelManifest.xml +**/*.Server/GeneratedArtifacts +**/*.Server/ModelManifest.xml +_Pvt_Extensions + +# Paket dependency manager +.paket/paket.exe +paket-files/ + +# FAKE - F# Make +.fake/ + +# CodeRush personal settings +.cr/personal + +# Python Tools for Visual Studio (PTVS) +__pycache__/ +*.pyc + +# Cake - Uncomment if you are using it +# tools/** +# !tools/packages.config + +# Tabs Studio +*.tss + +# Telerik's JustMock configuration file +*.jmconfig + +# BizTalk build output +*.btp.cs +*.btm.cs +*.odx.cs +*.xsd.cs + +# OpenCover UI analysis results +OpenCover/ + +# Azure Stream Analytics local run output +ASALocalRun/ + +# MSBuild Binary and Structured Log +*.binlog + +# NVidia Nsight GPU debugger configuration file +*.nvuser + +# MFractors (Xamarin productivity tool) working folder +.mfractor/ + +# Local History for Visual Studio +.localhistory/ + +# BeatPulse healthcheck temp database +healthchecksdb + +# Backup folder for Package Reference Convert tool in Visual Studio 2017 +MigrationBackup/ + +# Ionide (cross platform F# VS Code tools) working folder +.ionide/ + +# Fody - auto-generated XML schema +FodyWeavers.xsd \ No newline at end of file diff --git a/App.config b/App.config new file mode 100644 index 0000000..03f012f --- /dev/null +++ b/App.config @@ -0,0 +1,30 @@ + + + + +
+ + + + + + + + + 0, 0 + + + 1000 + + + 8.8.8.8 + + + True + + + 8.8.8.8 + + + + \ No newline at end of file diff --git a/Compiled/.gitkeep b/Compiled/.gitkeep new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/Compiled/.gitkeep @@ -0,0 +1 @@ + diff --git a/Compiled/IPAddressControlLib.dll b/Compiled/IPAddressControlLib.dll new file mode 100644 index 0000000000000000000000000000000000000000..da17b950ddb779cd1c9f9ad2f425537a9fe346d3 GIT binary patch literal 24576 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򴤣uIxC~(raaq9FLtJ1*J0hxNA4f4Gx1+8=M8m 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 a1i%kE@DmD($S-03Cp!55ZT`Qkf&T-DGAZf+ literal 0 HcmV?d00001 diff --git a/Compiled/Microsoft.Win32.TaskScheduler.dll b/Compiled/Microsoft.Win32.TaskScheduler.dll new file mode 100644 index 0000000000000000000000000000000000000000..b60ba70936c4695f417ab95e39b23dda9c4fca42 GIT binary patch literal 333824 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�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 + + + Microsoft.Win32.TaskScheduler + + + + Defines the type of actions a task can perform. + The action type is defined when the action is created and cannot be changed later. See . + + + + This action performs a command-line operation. For example, the action can run a script, launch an executable, or, if the name + of a document is provided, find its associated application and launch the application with the document. + + + + This action fires a handler. + + + This action sends and e-mail. + + + This action shows a message box. + + + An interface that exposes the ability to convert an actions functionality to a PowerShell script. + + + + Abstract base class that provides the common properties that are inherited by all action objects. An action object is created by the + method. + + + + List of unbound values when working with Actions not associated with a registered task. + + + Occurs when a property value changes. + + + Gets the type of the action. + The type of the action. + + + Gets or sets the identifier of the action. + + + Creates the specified action. + Type of the action to instantiate. + of specified type. + + + Creates a new object that is a copy of the current instance. + A new object that is a copy of this instance. + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current + instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + A value that indicates the relative order of the objects being compared. + + + Releases all resources used by this class. + + + Determines whether the specified , is equal to this instance. + The to compare with this instance. + true if the specified is equal to this instance; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Returns a hash code for this instance. + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + Returns the action Id. + String representation of action. + + + Returns a that represents this action. + The culture. + String representation of action. + + + Creates a specialized class from a defined interface. + Version 1.0 interface. + Specialized action class + + + Creates a specialized class from a defined interface. + Version 2.0 Action interface. + Specialized action class + + + Copies the properties from another the current instance. + The source . + + + + Represents an action that fires a handler. Only available on Task Scheduler 2.0. Only available for Task Scheduler 2.0 on + Windows Vista or Windows Server 2003 and later. + + + This action is the most complex. It allows the task to execute and In-Proc COM server object that implements the ITaskHandler + interface. There is a sample project that shows how to do this in the Downloads section. + + + + + + + + + Creates an unbound instance of . + + + Creates an unbound instance of . + Identifier of the handler class. + Addition data associated with the handler. + + + Gets or sets the identifier of the handler class. + + + Gets the name of the object referred to by . + + + Gets or sets additional data that is associated with the handler. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets a string representation of the . + String representation of this action. + + + Copies the properties from another the current instance. + The source . + + + Gets the name for CLSID. + The unique identifier. + + + + + Represents an action that sends an e-mail. Only available for Task Scheduler 2.0 on Windows Vista or Windows Server 2003 and + later.This action has been deprecated in Windows 8 and later. However, this library is able to mimic its + functionality using PowerShell if the property is set to . To disable this conversion, set the value to . + + The EmailAction allows for an email to be sent when the task is triggered. + + + + + + + + Creates an unbound instance of . + + + Creates an unbound instance of . + Subject of the e-mail. + E-mail address that you want to send the e-mail from. + E-mail address or addresses that you want to send the e-mail to. + Body of the e-mail that contains the e-mail message. + Name of the server that you use to send e-mail from. + + + + Gets or sets an array of file paths to be sent as attachments with the e-mail. Each item must be a value + containing a path to file. + + + + Gets or sets the e-mail address or addresses that you want to Bcc in the e-mail. + + + Gets or sets the body of the e-mail that contains the e-mail message. + + + Gets or sets the e-mail address or addresses that you want to Cc in the e-mail. + + + Gets or sets the e-mail address that you want to send the e-mail from. + + + Gets or sets the header information in the e-mail message to send. + + + Gets or sets the priority of the e-mail message. + A that contains the priority of this message. + + + Gets or sets the e-mail address that you want to reply to. + + + Gets or sets the name of the server that you use to send e-mail from. + + + Gets or sets the subject of the e-mail. + + + Gets or sets the e-mail address or addresses that you want to send the e-mail to. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets a string representation of the . + String representation of this action. + + + Copies the properties from another the current instance. + The source . + + + Represents an action that executes a command-line operation. + + All versions of the base library support the ExecAction. It only has three properties that allow it to run an executable with parameters. + + + + + + + + + Creates a new instance of an that can be added to . + + + Creates a new instance of an that can be added to . + Path to an executable file. + Arguments associated with the command-line operation. This value can be null. + + Directory that contains either the executable file or the files that are used by the executable file. This value can be null. + + + + Gets or sets the arguments associated with the command-line operation. + + + Gets or sets the path to an executable file. + + + + Gets or sets the directory that contains either the executable file or the files that are used by the executable file. + + + + Determines whether the specified path is a valid filename and, optionally, if it exists. + The path. + if set to true check if file exists. + if set to true throw exception on error. + true if the specified path is a valid filename; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + + Validates the input as a valid filename and optionally checks for its existence. If valid, the property is + set to the validated absolute file path. + + The file path to validate. + if set to true check if the file exists. + + + Gets a string representation of the . + String representation of this action. + + + Copies the properties from another the current instance. + The source . + + + + Represents an action that shows a message box when a task is activated. Only available for Task Scheduler 2.0 on Windows Vista + or Windows Server 2003 and later.This action has been deprecated in Windows 8 and later. However, this + library is able to mimic its functionality using PowerShell if the property is + set to . To disable this conversion, set the value to . + + Display a message when the trigger fires using the ShowMessageAction. + + + + + + + + Creates a new unbound instance of . + + + Creates a new unbound instance of . + Message text that is displayed in the body of the message box. + Title of the message box. + + + Gets or sets the message text that is displayed in the body of the message box. + + + Gets or sets the title of the message box. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets a string representation of the . + String representation of this action. + + + Copies the properties from another the current instance. + The source . + + + Options for when to convert actions to PowerShell equivalents. + + + + Never convert any actions to PowerShell. This will force exceptions to be thrown when unsupported actions our action quantities + are found. + + + + + Convert actions under Version 1 of the library (Windows XP or Windows Server 2003 and earlier). This option supports multiple + actions of all types. If not specified, only a single is supported. Developer must ensure that + PowerShell v2 or higher is installed on the target computer. + + + + + Convert all and references to their PowerShell equivalents on systems + on or after Windows 8 / Server 2012. + + + + Convert all actions regardless of version or operating system. + + + Collection that contains the actions that are performed by the task. + + + Occurs when a collection changes. + + + Occurs when a property value changes. + + + Gets or sets the identifier of the principal for the task. + + + + Gets or sets the systems under which unsupported actions will be converted to PowerShell instances. + + The PowerShell platform options. + + This property will affect how many actions are physically stored in the system and is tied to the version of Task Scheduler. + + If set to , then no actions will ever be converted to PowerShell. This will + force exceptions to be thrown when unsupported actions our action quantities are found. + + + If set to , then actions will be converted only under Version 1 of the + library (Windows XP or Windows Server 2003 and earlier). This option supports multiple actions of all types. If not specified, + only a single is supported. Developer must ensure that PowerShell v2 or higher is installed on the + target computer. + + + If set to (which is the default value), then and references will be converted to their PowerShell equivalents on systems + on or after Windows 8 / Server 2012. + + + If set to , then any actions not supported by the Task Scheduler version will be + converted to PowerShell. + + + + + Gets or sets an XML-formatted version of the collection. + + + Gets the number of actions in the collection. + + + Gets or sets a specified action from the collection. + The . + The id ( ) of the action to be retrieved. + Specialized instance. + + + + Mismatching Id for action and lookup. + + + Gets or sets a an action at the specified index. + The zero-based index of the action to get or set. + + + Adds an action to the task. + A type derived from . + A derived class. + The bound that was added to the collection. + + + Adds an to the task. + Path to an executable file. + Arguments associated with the command-line operation. This value can be null. + + Directory that contains either the executable file or the files that are used by the executable file. This value can be null. + + The bound that was added to the collection. + + + Adds a new instance to the task. + Type of task to be created + Specialized instance. + + + Adds a collection of actions to the end of the . + + The actions to be added to the end of the . The collection itself cannot be null and cannot + contain null elements. + + is null. + + + Clears all actions from the task. + + + Determines whether the contains a specific value. + The object to locate in the . + true if is found in the ; otherwise, false. + + + Determines whether the specified action type is contained in this collection. + Type of the action. + true if the specified action type is contained in this collection; otherwise, false. + + + + Copies the elements of the to an array of , starting at a particular index. + + + The array that is the destination of the elements copied from . The array must have zero-based indexing. + + The zero-based index in array at which copying begins. + + + + Copies the elements of the to an array, starting at a particular array index. + + The zero-based index in the source at which copying begins. + + The array that is the destination of the elements copied from . The array must have zero-based indexing. + + The zero-based index in array at which copying begins. + The number of elements to copy. + is null. + is less than 0. + + The number of elements in the source is greater than the available space from to the end of the destination . + + + + Releases all resources used by this class. + + + + Searches for an that matches the conditions defined by the specified predicate, and returns the first + occurrence within the entire collection. + + + The delegate that defines the conditions of the to search for. + + + The first that matches the conditions defined by the specified predicate, if found; otherwise, null. + + + + + Searches for an that matches the conditions defined by the specified predicate, and returns the zero-based + index of the first occurrence within the collection that starts at the specified index and contains the specified number of elements. + + The zero-based starting index of the search. + The number of elements in the collection to search. + The delegate that defines the conditions of the element to search for. + + The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, –1. + + + + + Searches for an that matches the conditions defined by the specified predicate, and returns the zero-based + index of the first occurrence within the collection. + + The delegate that defines the conditions of the element to search for. + + The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, –1. + + + + Retrieves an enumeration of each of the actions. + + Returns an object that implements the interface and that can iterate through the + objects within the . + + + + Determines the index of a specific item in the . + The object to locate in the . + The index of if found in the list; otherwise, -1. + + + Determines the index of a specific item in the . + The id ( ) of the action to be retrieved. + The index of if found in the list; otherwise, -1. + + + Inserts an action at the specified index. + The zero-based index at which action should be inserted. + The action to insert into the list. + + + Removes the first occurrence of a specific object from the . + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method + also returns false if is not found in the original . + + + + Removes the action at a specified index. + Index of action to remove. + Index out of range. + + + Copies the elements of the to a new array. + An array containing copies of the elements of the . + + + Returns a that represents the actions in this collection. + A that represents the actions in this collection. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + + Functions to provide localized strings for enumerated types and values. + + + + + Gets a string representing the localized value of the provided enum. + + The enum value. + A localized string, if available. + + + + Pair of name and value. + + + + + Occurs when a property has changed. + + + + + Initializes a new instance of the class. + + + + + Gets or sets the name. + + + The name. + + + + + Gets or sets the value. + + + The value. + + + + + Clones this instance. + + A copy of an unbound . + + + + Determines whether the specified , is equal to this instance. + + The to compare with this instance. + + true if the specified is equal to this instance; otherwise, false. + + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + + Returns a hash code for this instance. + + + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Implements the operator implicit NameValuePair. + + The KeyValuePair. + + The result of the operator. + + + + + Contains a collection of name-value pairs. + + + + + Occurs when the collection has changed. + + + + + Occurs when a property has changed. + + + + + Copies current to another. + + The destination collection. + + + + Releases all resources used by this class. + + + + + Gets the number of items in the collection. + + + + + Gets a collection of the names. + + + The names. + + + + + Gets a collection of the values. + + + The values. + + + + + Gets the value of the item at the specified index. + + The index of the item being requested. + The value of the name-value pair at the specified index. + + + + Gets the value of the item with the specified name. + + Name to get the value for. + Value for the name, or null if not found. + + + + Adds an item to the . + + The object to add to the . + + + + Adds a name-value pair to the collection. + + The name associated with a value in a name-value pair. + The value associated with a name in a name-value pair. + + + + Adds the elements of the specified collection to the end of . + + The collection of whose elements should be added to the end of . + + + + Clears the entire collection of name-value pairs. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Removes the name-value pair with the specified key from the collection. + + The name associated with a value in a name-value pair. + true if item successfully removed; false otherwise. + + + + Removes a selected name-value pair from the collection. + + Index of the pair to remove. + + + + Gets the value associated with the specified name. + + The name whose value to get. + When this method returns, the value associated with the specified name, if the name is found; otherwise, null. This parameter is passed uninitialized. + true if the collection contains an element with the specified name; otherwise, false. + + + + Gets the collection enumerator for the name-value collection. + + An for the collection. + + + + Abstract class for throwing a method specific exception. + + + + Defines the minimum supported version for the action not allowed by this exception. + + + + Initializes a new instance of the class. + + The serialization information. + The streaming context. + + + + Gets a message that describes the current exception. + + + + + Gets the minimum supported TaskScheduler version required for this method or property. + + + + + Gets the object data. + + The information. + The context. + + + + Thrown when the calling method is not supported by Task Scheduler 1.0. + + + + + Initializes a new instance of the class. + + The serialization information. + The streaming context. + + + + Initializes a new instance of the class. + + The message. + + + + Thrown when the calling method is not supported by Task Scheduler 2.0. + + + + + Initializes a new instance of the class. + + The serialization information. + The streaming context. + + + + Thrown when the calling method is not supported by Task Scheduler versions prior to the one specified. + + + + + Initializes a new instance of the class. + + The serialization information. + The streaming context. + + + + A strongly-typed resource class, for looking up localized strings, etc. + + + + + Returns the cached ResourceManager instance used by this class. + + + + + Overrides the current thread's CurrentUICulture property for all + resource lookups using this strongly typed resource class. + + + + + Looks up a localized string similar to Call a COM object. + + + + + Looks up a localized string similar to Start a program. + + + + + Looks up a localized string similar to Send an e-mail. + + + + + Looks up a localized string similar to Display a message. + + + + + Looks up a localized string similar to {3} {0:P}. + + + + + Looks up a localized string similar to every day. + + + + + Looks up a localized string similar to {1} {0}. + + + + + Looks up a localized string similar to .. + + + + + Looks up a localized string similar to The date and time a trigger expires must be later than the time time it starts or is activated.. + + + + + Looks up a localized string similar to {0} {1}. + + + + + Looks up a localized string similar to -. + + + + + Looks up a localized string similar to ,. + + + + + Looks up a localized string similar to every month. + + + + + Looks up a localized string similar to Multiple actions defined. + + + + + Looks up a localized string similar to Multiple triggers defined. + + + + + Looks up a localized string similar to {0}. + + + + + Looks up a localized string similar to Author. + + + + + Looks up a localized string similar to Disabled. + + + + + Looks up a localized string similar to Queued. + + + + + Looks up a localized string similar to Ready. + + + + + Looks up a localized string similar to Running. + + + + + Looks up a localized string similar to Unknown. + + + + + Looks up a localized string similar to any user. + + + + + Looks up a localized string similar to At system startup. + + + + + Looks up a localized string similar to Custom Trigger. + + + + + Looks up a localized string similar to At {0:t} every day. + + + + + Looks up a localized string similar to At {0:t} every {1} days. + + + + + Looks up a localized string similar to indefinitely. + + + + + Looks up a localized string similar to for a duration of {0}. + + + + + Looks up a localized string similar to for {0}. + + + + + Looks up a localized string similar to Trigger expires at {0:G}.. + + + + + Looks up a localized string similar to Custom event filter. + + + + + Looks up a localized string similar to On event - Log: {0}. + + + + + Looks up a localized string similar to , Source: {0}. + + + + + Looks up a localized string similar to , EventID: {0}. + + + + + Looks up a localized string similar to When computer is idle. + + + + + Looks up a localized string similar to At log on of {0}. + + + + + Looks up a localized string similar to At {0:t} on day {1} of {2}, starting {0:d}. + + + + + Looks up a localized string similar to At {0:t} on {1} {2:f} each {3}, starting {0:d}. + + + + + Looks up a localized string similar to When the task is created or modified. + + + + + Looks up a localized string similar to After triggered, repeat every {0} {1}.. + + + + + Looks up a localized string similar to Every {0} {1}.. + + + + + Looks up a localized string similar to On local connection to {0}.. + + + + + Looks up a localized string similar to On local disconnect from {0}.. + + + + + Looks up a localized string similar to On remote connection to {0}.. + + + + + Looks up a localized string similar to On remote disconnect from {0}.. + + + + + Looks up a localized string similar to On workstation lock of {0}.. + + + + + Looks up a localized string similar to On workstation unlock of {0}.. + + + + + Looks up a localized string similar to user session of {0}. + + + + + Looks up a localized string similar to At {0:t} on {0:d}. + + + + + Looks up a localized string similar to At startup. + + + + + Looks up a localized string similar to Custom Trigger. + + + + + Looks up a localized string similar to Daily. + + + + + Looks up a localized string similar to On an event. + + + + + Looks up a localized string similar to On idle. + + + + + Looks up a localized string similar to At log on. + + + + + Looks up a localized string similar to Monthly. + + + + + Looks up a localized string similar to Monthly. + + + + + Looks up a localized string similar to At task creation/modification. + + + + + Looks up a localized string similar to On state change. + + + + + Looks up a localized string similar to One time. + + + + + Looks up a localized string similar to Weekly. + + + + + Looks up a localized string similar to At {0:t} every {1} of every week, starting {0:d}. + + + + + Looks up a localized string similar to At {0:t} every {1} of every {2} weeks, starting {0:d}. + + + + + Looks up a localized string similar to every. + + + + + Looks up a localized string similar to fifth. + + + + + Looks up a localized string similar to first. + + + + + Looks up a localized string similar to fourth. + + + + + Looks up a localized string similar to last. + + + + + Looks up a localized string similar to second. + + + + + Looks up a localized string similar to third. + + + + + Some string values of properties can be set to retrieve their value from existing DLLs as a resource. This class facilitates creating those reference strings. + + + + + Initializes a new instance of the class. + + The DLL path. + The resource identifier. + + + + Gets or sets the resource file path. This can be a relative path, full path or lookup path (e.g. %SystemRoot%\System32\ResourceName.dll). + + + The resource file path. + + + + + Gets or sets the resource identifier. + + The resource identifier. + + + + Performs an implicit conversion from to . + + The value. + The result of the conversion. + + + + Parses the input string. String must be in the format "$(@ [Dll], [ResourceID])". + + The input string value. + A new instance on success or null on failure. + is null + is not in the format "$(@ [Dll], [ResourceID])" + + + + Tries to parse to input string. String must be in the format "$(@ [Dll], [ResourceID])". + + The input string value. + The resource reference to be returned. On failure, this value equals null. + A new instance on success or null on failure. + + + + Gets the result of pulling the string from the resource file using the identifier. + + from resource file. + cannot be found. + Unable to load or string identified by . + + + + Returns a in the format required by the Task Scheduler to reference a string in a DLL. + + A formatted in the format $(@ [Dll], [ResourceID]). + + + Abstract class representing a secured item for storage in a . + + + Initializes a new instance of the class. + The path to the item. + The SDDL for the item. + + + Gets the path to the item. + The path to the item. + + + Gets the SDDL for the item. + The SDDL for the item. + + + Represents a instance and captures its name and security. + + + Initializes a new instance of the class. + The path to the item. + The SDDL for the item. + + + + Represents all the information about the tasks and folders from a instance that can be used to reconstitute tasks and folders + on the same or different systems. This class and related classes are only available under the .NET 4.5.2 build and later .NET versions due to + dependencies on threading and compressed (zip) files. + + + + Creates a new instance of from an existing snapshot. + The zip file snapshot created by the method. + + + + Gets a list of and instances the represent the tasks and folders from a Task Scheduler instance. + + + + Gets the path of the file based snapshot. + + + Gets the machine name of the server from which the snapshot was taken. + The target server name. + + + Gets the UTC time stamp for when the snapshot was taken. + The time stamp. + + + + Creates a compressed zip file that contains all the information accessible to the user from the instance necessary to + reconstitute its tasks and folders. This method can take many seconds to execute. It is recommended to call the asynchronous + version.This method will execute without error even if the user does not have permissions to see all tasks and folders. + It is imperative that the developer ensures that the user has Administrator or equivalent rights before calling this method. + + The from which to pull the tasks and folders. + The output zip file in which to place the snapshot information. + A instance with the contents of the specified Task Scheduler connection. + + + + Creates a compressed zip file that contains all the information accessible to the user from the instance necessary to + reconstitute its tasks and folders. This method will execute without error even if the user does not have permissions to see all + tasks and folders. It is imperative that the developer ensures that the user has Administrator or equivalent rights before calling this method. + + The from which to pull the tasks and folders. + The output zip file in which to place the snapshot information. + A cancellation token to use to cancel this asynchronous operation. + An optional instance to use to report progress of the asynchronous operation. + An asynchronous instance with the contents of the specified Task Scheduler connection. + + + Opens an existing snapshot and returns a new instance of . + The zip file snapshot created by the method. + A instance with the contents of the specified snapshot file. + + + Register a list of snapshot items (tasks and folders) into the specified Task Scheduler. + The into which the tasks and folders are registered. + + The list of paths representing the tasks and folders from this snapshot that should be registered on the instance. + + + If true, takes the access rights from the snapshot item and applies it to both new and existing tasks and folders. + + + If true, overwrite any existing tasks and folders found in the target Task Scheduler that match the path of the snapshot item. + + + Lookup table for password. Provide pairs of the user/group account name and the associated passwords for any task that requires a password. + + A cancellation token to use to cancel this asynchronous operation. + An optional instance to use to report progress of the asynchronous operation. + An asynchronous instance. + + + Register a list of snapshot items (tasks and folders) into the specified Task Scheduler. + The into which the tasks and folders are registered. + + The list of instances representing the tasks and folders from this snapshot that should be registered on the + instance. + + + If true, takes the access rights from the snapshot item and applies it to both new and existing tasks and folders. + + + If true, overwrite any existing tasks and folders found in the target Task Scheduler that match the path of the snapshot item. + + + Lookup table for password. Provide pairs of the user/group account name and the associated passwords for any task that requires a password. + + A cancellation token to use to cancel this asynchronous operation. + An optional instance to use to report progress of the asynchronous operation. + An asynchronous instance. + + + Register a list of snapshot items (tasks and folders) into the specified Task Scheduler. + The into which the tasks and folders are registered. + + The list of instances representing the tasks and folders from this snapshot that should be registered on the + instance. + + + If true, takes the access rights from the snapshot item and applies it to both new and existing tasks and folders. + + + If true, overwrite any existing tasks and folders found in the target Task Scheduler that match the path of the snapshot item. + + + Lookup table for password. Provide pairs of the user/group account name and the associated passwords for any task that requires a password. + + + + Represents a instance and captures its details. + + + Initializes a new instance of the class. + The path to the item. + The SDDL for the item. + If set to true task is enabled. + The XML for the . + + + Gets a value indicating whether th is enabled. + true if enabled; otherwise, false. + + + Gets the XML. + The XML. + + + Defines what versions of Task Scheduler or the AT command that the task is compatible with. + + + The task is compatible with the AT command. + + + + The task is compatible with Task Scheduler 1.0 (Windows Server™ 2003, Windows® XP, or Windows® 2000). + Items not available when compared to V2: + + + TaskDefinition.Principal.GroupId - All account information can be retrieved via the UserId property. + + + TaskLogonType values Group, None and S4U are not supported. + + + TaskDefinition.Principal.RunLevel == TaskRunLevel.Highest is not supported. + + + + Assigning access security to a task is not supported using TaskDefinition.RegistrationInfo.SecurityDescriptorSddlForm or in RegisterTaskDefinition. + + + + + TaskDefinition.RegistrationInfo.Documentation, Source, URI and Version properties are only supported using this library. See + details in the remarks for . + + + + TaskDefinition.Settings.AllowDemandStart cannot be false. + + + TaskDefinition.Settings.AllowHardTerminate cannot be false. + + + TaskDefinition.Settings.MultipleInstances can only be IgnoreNew. + + + TaskDefinition.Settings.NetworkSettings cannot have any values. + + + TaskDefinition.Settings.RestartCount can only be 0. + + + TaskDefinition.Settings.StartWhenAvailable can only be false. + + + + TaskDefinition.Actions can only contain ExecAction instances unless the TaskDefinition.Actions.PowerShellConversion property has + the Version1 flag set. + + + + + TaskDefinition.Triggers cannot contain CustomTrigger, EventTrigger, SessionStateChangeTrigger, or RegistrationTrigger instances. + + + + TaskDefinition.Triggers cannot contain instances with delays set. + + + TaskDefinition.Triggers cannot contain instances with ExecutionTimeLimit or Id properties set. + + + TaskDefinition.Triggers cannot contain LogonTriggers instances with the UserId property set. + + + TaskDefinition.Triggers cannot contain MonthlyDOWTrigger instances with the RunOnLastWeekOfMonth property set to true. + + + TaskDefinition.Triggers cannot contain MonthlyTrigger instances with the RunOnDayWeekOfMonth property set to true. + + + + + + + The task is compatible with Task Scheduler 2.0 (Windows Vista™, Windows Server™ 2008). + + This version is the baseline for the new, non-file based Task Scheduler. See remarks for + functionality that was not forward-compatible. + + + + + + The task is compatible with Task Scheduler 2.1 (Windows® 7, Windows Server™ 2008 R2). + Changes from V2: + + + TaskDefinition.Principal.ProcessTokenSidType can be defined as a value other than Default. + + + + TaskDefinition.Actions may not contain EmailAction or ShowMessageAction instances unless the + TaskDefinition.Actions.PowerShellConversion property has the Version2 flag set. + + + + TaskDefinition.Principal.RequiredPrivileges can have privilege values assigned. + + + TaskDefinition.Settings.DisallowStartOnRemoteAppSession can be set to true. + + + TaskDefinition.UseUnifiedSchedulingEngine can be set to true. + + + + + + + The task is compatible with Task Scheduler 2.2 (Windows® 8.x, Windows Server™ 2012). + Changes from V2_1: + + + + TaskDefinition.Settings.MaintenanceSettings can have Period or Deadline be values other than TimeSpan.Zero or the Exclusive + property set to true. + + + + TaskDefinition.Settings.Volatile can be set to true. + + + + + + + The task is compatible with Task Scheduler 2.3 (Windows® 10, Windows Server™ 2016). + Changes from V2_2: + + + None published. + + + + + + Defines how the Task Scheduler service creates, updates, or disables the task. + + + The Task Scheduler service registers the task as a new task. + + + + The Task Scheduler service either registers the task as a new task or as an updated version if the task already exists. + Equivalent to Create | Update. + + + + + The Task Scheduler service registers the disabled task. A disabled task cannot run until it is enabled. For more information, + see Enabled Property of TaskSettings and Enabled Property of RegisteredTask. + + + + + The Task Scheduler service is prevented from adding the allow access-control entry (ACE) for the context principal. When the + TaskFolder.RegisterTaskDefinition or TaskFolder.RegisterTask functions are called with this flag to update a task, the Task + Scheduler service does not add the ACE for the new context principal and does not remove the ACE from the old context principal. + + + + + The Task Scheduler service creates the task, but ignores the registration triggers in the task. By ignoring the registration + triggers, the task will not execute when it is registered unless a time-based trigger causes it to execute on registration. + + + + + The Task Scheduler service registers the task as an updated version of an existing task. When a task with a registration trigger + is updated, the task will execute after the update occurs. + + + + + The Task Scheduler service checks the syntax of the XML that describes the task but does not register the task. This constant + cannot be combined with the Create, Update, or CreateOrUpdate values. + + + + Defines how the Task Scheduler handles existing instances of the task when it starts a new instance of the task. + + + Starts new instance while an existing instance is running. + + + Starts a new instance of the task after all other instances of the task are complete. + + + Does not start a new instance if an existing instance of the task is running. + + + Stops an existing instance of the task before it starts a new instance. + + + Defines what logon technique is required to run a task. + + + The logon method is not specified. Used for non-NT credentials. + + + Use a password for logging on the user. The password must be supplied at registration time. + + + + Use an existing interactive token to run a task. The user must log on using a service for user (S4U) logon. When an S4U logon is + used, no password is stored by the system and there is no access to either the network or to encrypted files. + + + + User must already be logged on. The task will be run only in an existing interactive session. + + + Group activation. The groupId field specifies the group. + + + + Indicates that a Local System, Local Service, or Network Service account is being used as a security context to run the task. + + + + + First use the interactive token. If the user is not logged on (no interactive token is available), then the password is used. + The password must be specified when a task is registered. This flag is not recommended for new tasks because it is less reliable + than Password. + + + + Defines which privileges must be required for a secured task. + + + Required to create a primary token. User Right: Create a token object. + + + Required to assign the primary token of a process. User Right: Replace a process-level token. + + + Required to lock physical pages in memory. User Right: Lock pages in memory. + + + Required to increase the quota assigned to a process. User Right: Adjust memory quotas for a process. + + + Required to read unsolicited input from a terminal device. User Right: Not applicable. + + + Required to create a computer account. User Right: Add workstations to domain. + + + + This privilege identifies its holder as part of the trusted computer base. Some trusted protected subsystems are granted this + privilege. User Right: Act as part of the operating system. + + + + + Required to perform a number of security-related functions, such as controlling and viewing audit messages. This privilege + identifies its holder as a security operator. User Right: Manage auditing and the security log. + + + + + Required to take ownership of an object without being granted discretionary access. This privilege allows the owner value to be + set only to those values that the holder may legitimately assign as the owner of an object. User Right: Take ownership of files + or other objects. + + + + Required to load or unload a device driver. User Right: Load and unload device drivers. + + + Required to gather profiling information for the entire system. User Right: Profile system performance. + + + Required to modify the system time. User Right: Change the system time. + + + Required to gather profiling information for a single process. User Right: Profile single process. + + + Required to increase the base priority of a process. User Right: Increase scheduling priority. + + + Required to create a paging file. User Right: Create a pagefile. + + + Required to create a permanent object. User Right: Create permanent shared objects. + + + + Required to perform backup operations. This privilege causes the system to grant all read access control to any file, regardless + of the access control list (ACL) specified for the file. Any access request other than read is still evaluated with the ACL. + This privilege is required by the RegSaveKey and RegSaveKeyExfunctions. The following access rights are granted if this + privilege is held: READ_CONTROL, ACCESS_SYSTEM_SECURITY, FILE_GENERIC_READ, FILE_TRAVERSE. User Right: Back up files and directories. + + + + + Required to perform restore operations. This privilege causes the system to grant all write access control to any file, + regardless of the ACL specified for the file. Any access request other than write is still evaluated with the ACL. Additionally, + this privilege enables you to set any valid user or group security identifier (SID) as the owner of a file. This privilege is + required by the RegLoadKey function. The following access rights are granted if this privilege is held: WRITE_DAC, WRITE_OWNER, + ACCESS_SYSTEM_SECURITY, FILE_GENERIC_WRITE, FILE_ADD_FILE, FILE_ADD_SUBDIRECTORY, DELETE. User Right: Restore files and directories. + + + + Required to shut down a local system. User Right: Shut down the system. + + + Required to debug and adjust the memory of a process owned by another account. User Right: Debug programs. + + + Required to generate audit-log entries. Give this privilege to secure servers. User Right: Generate security audits. + + + + Required to modify the nonvolatile RAM of systems that use this type of memory to store configuration information. User Right: + Modify firmware environment values. + + + + + Required to receive notifications of changes to files or directories. This privilege also causes the system to skip all + traversal access checks. It is enabled by default for all users. User Right: Bypass traverse checking. + + + + Required to shut down a system by using a network request. User Right: Force shutdown from a remote system. + + + Required to undock a laptop. User Right: Remove computer from docking station. + + + + Required for a domain controller to use the LDAP directory synchronization services. This privilege allows the holder to read + all objects and properties in the directory, regardless of the protection on the objects and properties. By default, it is + assigned to the Administrator and LocalSystem accounts on domain controllers. User Right: Synchronize directory service data. + + + + + Required to mark user and computer accounts as trusted for delegation. User Right: Enable computer and user accounts to be + trusted for delegation. + + + + Required to enable volume management privileges. User Right: Manage the files on a volume. + + + + Required to impersonate. User Right: Impersonate a client after authentication. Windows XP/2000: This privilege is not + supported. Note that this value is supported starting with Windows Server 2003, Windows XP with SP2, and Windows 2000 with SP4. + + + + + Required to create named file mapping objects in the global namespace during Terminal Services sessions. This privilege is + enabled by default for administrators, services, and the local system account. User Right: Create global objects. Windows + XP/2000: This privilege is not supported. Note that this value is supported starting with Windows Server 2003, Windows XP with + SP2, and Windows 2000 with SP4. + + + + Required to access Credential Manager as a trusted caller. User Right: Access Credential Manager as a trusted caller. + + + Required to modify the mandatory integrity level of an object. User Right: Modify an object label. + + + + Required to allocate more memory for applications that run in the context of users. User Right: Increase a process working set. + + + + Required to adjust the time zone associated with the computer's internal clock. User Right: Change the time zone. + + + Required to create a symbolic link. User Right: Create symbolic links. + + + + Defines the types of process security identifier (SID) that can be used by tasks. These changes are used to specify the type of + process SID in the IPrincipal2 interface. + + + + No changes will be made to the process token groups list. + + + + A task SID that is derived from the task name will be added to the process token groups list, and the token default + discretionary access control list (DACL) will be modified to allow only the task SID and local system full control and the + account SID read control. + + + + A Task Scheduler will apply default settings to the task process. + + + Defines how a task is run. + + + The task is run with all flags ignored. + + + The task is run as the user who is calling the Run method. + + + The task is run regardless of constraints such as "do not run on batteries" or "run only if idle". + + + The task is run using a terminal server session identifier. + + + The task is run using a security identifier. + + + Defines LUA elevation flags that specify with what privilege level the task will be run. + + + Tasks will be run with the least privileges. + + + Tasks will be run with the highest privileges. + + + + Defines what kind of Terminal Server session state change you can use to trigger a task to start. These changes are used to specify + the type of state change in the SessionStateChangeTrigger. + + + + + Terminal Server console connection state change. For example, when you connect to a user session on the local computer by + switching users on the computer. + + + + + Terminal Server console disconnection state change. For example, when you disconnect to a user session on the local computer by + switching users on the computer. + + + + + Terminal Server remote connection state change. For example, when a user connects to a user session by using the Remote Desktop + Connection program from a remote computer. + + + + + Terminal Server remote disconnection state change. For example, when a user disconnects from a user session while using the + Remote Desktop Connection program from a remote computer. + + + + + Terminal Server session locked state change. For example, this state change causes the task to run when the computer is locked. + + + + + Terminal Server session unlocked state change. For example, this state change causes the task to run when the computer is unlocked. + + + + Options for use when calling the SetSecurityDescriptorSddlForm methods. + + + No special handling. + + + The Task Scheduler service is prevented from adding the allow access-control entry (ACE) for the context principal. + + + Defines the different states that a registered task can be in. + + + The state of the task is unknown. + + + + The task is registered but is disabled and no instances of the task are queued or running. The task cannot be run until it is enabled. + + + + Instances of the task are queued. + + + The task is ready to be executed, but no instances are queued or running. + + + One or more instances of the task is running. + + + + Specifies how the Task Scheduler performs tasks when the computer is in an idle condition. For information about idle conditions, + see Task Idle Conditions. + + + + Occurs when a property value changes. + + + + Gets or sets a value that indicates the amount of time that the computer must be in an idle state before the task is run. + + + A value that indicates the amount of time that the computer must be in an idle state before the task is run. The minimum value + is one minute. If this value is TimeSpan.Zero, then the delay will be set to the default of 10 minutes. + + + + + Gets or sets a Boolean value that indicates whether the task is restarted when the computer cycles into an idle condition more + than once. + + + + + Gets or sets a Boolean value that indicates that the Task Scheduler will terminate the task if the idle condition ends before + the task is completed. + + + + + Gets or sets a value that indicates the amount of time that the Task Scheduler will wait for an idle condition to occur. If no + value is specified for this property, then the Task Scheduler service will wait indefinitely for an idle condition to occur. + + + A value that indicates the amount of time that the Task Scheduler will wait for an idle condition to occur. The minimum time + allowed is 1 minute. If this value is TimeSpan.Zero, then the delay will be the equivalent of "Do not wait". + + + + Releases all resources used by this class. + + + Returns a that represents this instance. + A that represents this instance. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Specifies the task settings the Task scheduler will use to start task during Automatic maintenance. + + + Occurs when a property value changes. + + + + Gets or sets the amount of time after which the Task scheduler attempts to run the task during emergency Automatic maintenance, + if the task failed to complete during regular Automatic maintenance. The minimum value is one day. The value of the property should be greater than the value of the property. If the deadline is not + specified the task will not be started during emergency Automatic maintenance. + + Property set for a task on a Task Scheduler version prior to 2.2. + + + + Gets or sets a value indicating whether the Task Scheduler must start the task during the Automatic maintenance in exclusive + mode. The exclusivity is guaranteed only between other maintenance tasks and doesn't grant any ordering priority of the task. If + exclusivity is not specified, the task is started in parallel with other maintenance tasks. + + Property set for a task on a Task Scheduler version prior to 2.2. + + + + Gets or sets the amount of time the task needs to be started during Automatic maintenance. The minimum value is one minute. + + Property set for a task on a Task Scheduler version prior to 2.2. + + + Releases all resources used by this class. + + + Returns a that represents this instance. + A that represents this instance. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Provides the settings that the Task Scheduler service uses to obtain a network profile. + + + Occurs when a property value changes. + + + Gets or sets a GUID value that identifies a network profile. + Not supported under Task Scheduler 1.0. + + + Gets or sets the name of a network profile. The name is used for display purposes. + Not supported under Task Scheduler 1.0. + + + Releases all resources used by this class. + + + Returns a that represents this instance. + A that represents this instance. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Provides the methods to get information from and control a running task. + + + Gets the process ID for the engine (process) which is running the task. + Not supported under Task Scheduler 1.0. + + + Gets the name of the current action that the running task is performing. + + + Gets the GUID identifier for this instance of the task. + + + Gets the operational state of the running task. + + + Releases all resources used by this class. + + + Refreshes all of the local instance variables of the task. + Thrown if task is no longer running. + + + + Provides the methods that are used to run the task immediately, get any running instances of the task, get or set the credentials + that are used to register the task, and the properties that describe the task. + + + + Occurs when a property value changes. + + + Gets the definition of the task. + + + Gets or sets a Boolean value that indicates if the registered task is enabled. + + As of version 1.8.1, under V1 systems (prior to Vista), this property will immediately update the Disabled state and re-save the + current task. If changes have been made to the , then those changes will be saved. + + + + Gets an instance of the parent folder. + A object representing the parent folder of this task. + + + Gets a value indicating whether this task instance is active. + true if this task instance is active; otherwise, false. + + + Gets the time the registered task was last run. + Returns if there are no prior run times. + + + Gets the results that were returned the last time the registered task was run. + The value returned is the last exit code of the last program run via an . + + + + + + + + Gets the time when the registered task is next scheduled to run. + Returns if there are no future run times. + + Potentially breaking change in release 1.8.2. For Task Scheduler 2.0, the return value prior to 1.8.2 would be Dec 30, 1899 if + there were no future run times. For 1.0, that value would have been DateTime.MinValue. In release 1.8.2 and later, all + versions will return DateTime.MinValue if there are no future run times. While this is different from the native 2.0 + library, it was deemed more appropriate to have consistency between the two libraries and with other .NET libraries. + + + + + Gets a value indicating whether this task is read only. Only available if is true. + + true if read only; otherwise, false. + + + Gets or sets the security descriptor for the task. + The security descriptor. + + + Gets the operational state of the registered task. + + + Gets or sets the that manages this task. + The task service. + + + Gets the name of the registered task. + + + Gets the number of times the registered task has missed a scheduled run. + Not supported under Task Scheduler 1.0. + + + Gets the path to where the registered task is stored. + + + Gets the XML-formatted registration information for the registered task. + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current + instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + A value that indicates the relative order of the objects being compared. + + + Releases all resources used by this class. + + + Exports the task to the specified file in XML. + Name of the output file. + + + + Gets a object that encapsulates the specified type of access control list (ACL) entries for the task + described by the current object. + + A object that encapsulates the access control rules for the current task. + + + + Gets a object that encapsulates the specified type of access control list (ACL) entries for the task + described by the current object. + + + One of the values that specifies which group of access control + entries to retrieve. + + A object that encapsulates the access control rules for the current task. + + + Gets all instances of the currently running registered task. + A with all instances of current task. + Not supported under Task Scheduler 1.0. + + + + Gets the last registration time, looking first at the value and then looking for the + most recent registration event in the Event Log. + + of the last registration or if no value can be found. + + + Gets the times that the registered task is scheduled to run during a specified time. + The starting time for the query. + The ending time for the query. + The requested number of runs. A value of 0 will return all times requested. + The scheduled times that the task will run. + + + Gets the security descriptor for the task. Not available to Task Scheduler 1.0. + Section(s) of the security descriptor to return. + The security descriptor for the task. + Not supported under Task Scheduler 1.0. + + + + Updates the task with any changes made to the by calling from the currently registered folder using the currently + registered name. + + Thrown if task was previously registered with a password. + + + Runs the registered task immediately. + + + The parameters used as values in the task actions. A maximum of 32 parameters can be supplied. To run a task with no parameters, + call this method without any values (e.g. + Run() + ). + + + The string values that you specify are paired with names and stored as name-value pairs. If you specify a single string value, + then Arg0 will be the name assigned to the value. The value can be used in the task action where the $(Arg0) variable is used in + the action properties. + + + If you pass in values such as "0", "100", and "250" as an array of string values, then "0" will replace the $(Arg0) variables, + "100" will replace the $(Arg1) variables, and "250" will replace the $(Arg2) variables used in the action properties. + + + For more information and a list of action properties that can use $(Arg0), $(Arg1), ..., $(Arg32) variables in their values, see + Task Actions. + + + A instance that defines the new instance of the task. + + + + + + + + Runs the registered task immediately using specified flags and a session identifier. + Defines how the task is run. + + The terminal server session in which you want to start the task. + + If the value is not passed into the parameter, then the value + specified in this parameter is ignored.If the value is passed into the flags parameter + and the sessionID value is less than or equal to 0, then an invalid argument error will be returned. + + + If the value is passed into the parameter and the sessionID + value is a valid session ID greater than 0 and if no value is specified for the user parameter, then the Task Scheduler service + will try to start the task interactively as the user who is logged on to the specified session. + + + If the value is passed into the parameter and the sessionID + value is a valid session ID greater than 0 and if a user is specified in the user parameter, then the Task Scheduler service + will try to start the task interactively as the user who is specified in the user parameter. + + + The user for which the task runs. + + + The parameters used as values in the task actions. A maximum of 32 parameters can be supplied. To run a task with no parameters, + call this method without any values (e.g. + RunEx(0, 0, "MyUserName") + ). + + + The string values that you specify are paired with names and stored as name-value pairs. If you specify a single string value, + then Arg0 will be the name assigned to the value. The value can be used in the task action where the $(Arg0) variable is used in + the action properties. + + + If you pass in values such as "0", "100", and "250" as an array of string values, then "0" will replace the $(Arg0) variables, + "100" will replace the $(Arg1) variables, and "250" will replace the $(Arg2) variables used in the action properties. + + + For more information and a list of action properties that can use $(Arg0), $(Arg1), ..., $(Arg32) variables in their values, see + Task Actions. + + + A instance that defines the new instance of the task. + + + This method will return without error, but the task will not run if the AllowDemandStart property of ITaskSettings is set to + false for the task. + + If RunEx is invoked from a disabled task, it will return null and the task will not be run. + + Not supported under Task Scheduler 1.0. + + + + + + + + + Applies access control list (ACL) entries described by a object to the file described by the current + object. + + + A object that describes an access control list (ACL) entry to apply to the current task. + + + Give read access to all authenticated users for a task. + + + + + + + Sets the security descriptor for the task. Not available to Task Scheduler 1.0. + The security descriptor for the task. + Flags that specify how to set the security descriptor. + Not supported under Task Scheduler 1.0. + + + Dynamically tries to load the assembly for the editor and displays it as editable for this task. + true if editor returns with OK response; false otherwise. + + The Microsoft.Win32.TaskSchedulerEditor.dll assembly must reside in the same directory as the Microsoft.Win32.TaskScheduler.dll + or in the GAC. + + + + Shows the property page for the task (v1.0 only). + + + Stops the registered task immediately. + + The Stop method stops all instances of the task. + + System account users can stop a task, users with Administrator group privileges can stop a task, and if a user has rights to + execute and read a task, then the user can stop the task. A user can stop the task instances that are running under the same + credentials as the user account. In all other cases, the user is denied access to stop the task. + + + + + Returns a that represents this instance. + A that represents this instance. + + + + Gets the ITaskDefinition for a V2 task and prevents the errors that come when connecting remotely to a higher version of the + Task Scheduler. + + The local task service. + The task instance. + if set to true this method will throw an exception if unable to get the task definition. + A valid ITaskDefinition that should not throw errors on the local instance. + Unable to get a compatible task definition for this version of the library. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Contains information about the compatibility of the current configuration with a specified version. + + + Gets the compatibility level. + The compatibility level. + + + Gets the property name with the incompatibility. + The property name. + + + Gets the reason for the incompatibility. + The reason. + + + Defines all the components of a task, such as the task settings, triggers, actions, and registration information. + + + Occurs when a property value changes. + + + Gets a collection of actions that are performed by the task. + + + + Gets or sets the data that is associated with the task. This data is ignored by the Task Scheduler service, but is used by + third-parties who wish to extend the task format. + + + For V1 tasks, this library makes special use of the SetWorkItemData and GetWorkItemData methods and does not expose that data + stream directly. Instead, it uses that data stream to hold a dictionary of properties that are not supported under V1, but can + have values under V2. An example of this is the value which is stored in the data stream. + + The library does not provide direct access to the V1 work item data. If using V2 properties with a V1 task, programmatic access + to the task using the native API will retrieve unreadable results from GetWorkItemData and will eliminate those property values + if SetWorkItemData is used. + + + + + Gets the lowest supported version that supports the settings for this . + + + Gets a collection of triggers that are used to start a task. + + + Gets or sets the XML-formatted definition of the task. + + + Gets the principal for the task that provides the security credentials for the task. + + + + Gets a class instance of registration information that is used to describe a task, such as the description of the task, the + author of the task, and the date the task is registered. + + + + Gets the settings that define how the Task Scheduler service performs the task. + + + Gets the XML Schema file for V1 tasks. + The for V1 tasks. + An object containing the XML Schema for V1 tasks. + + + + Determines whether this can use the Unified Scheduling Engine or if it contains unsupported properties. + + + if set to true throws an with details about unsupported properties in the Data + property of the exception. + + + true if this can use the Unified Scheduling Engine; otherwise, false. + + + Releases all resources used by this class. + + + Validates the current . + + if set to true throw a with details about invalid properties. + + true if current is valid; false if not. + + + Implements the operator + for triggers on a definition, effectively adding the trigger to the definition. + The definition to which the trigger is to be added. + The trigger to add. + The definition with the added trigger. + + + Implements the operator + for actions on a definition, effectively adding the action to the definition. + The definition to which the action is to be added. + The action to add. + The definition with the added action. + + + Gets the lowest supported version. + The output list. + + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + + Provides the security credentials for a principal. These security credentials define the security context for the tasks that are + associated with the principal. + + + + Occurs when a property value changes. + + + + Gets the account associated with this principal. This value is pulled from the TaskDefinition's XMLText property if set. + + The account. + + + Gets or sets the name of the principal that is displayed in the Task Scheduler UI. + Not supported under Task Scheduler 1.0. + + + + Gets or sets the identifier of the user group that is required to run the tasks that are associated with the principal. Setting + this property to something other than a null or empty string, will set the property to NULL and will set + the property to TaskLogonType.Group; + + Not supported under Task Scheduler 1.0. + + + Gets or sets the identifier of the principal. + Not supported under Task Scheduler 1.0. + + + Gets or sets the security logon method that is required to run the tasks that are associated with the principal. + + TaskLogonType values of Group, None, or S4UNot are not supported under Task Scheduler 1.0. + + + + Gets or sets the task process security identifier (SID) type. + One of the enumeration constants. + Setting this value appears to break the Task Scheduler MMC and does not output in XML. Removed to prevent problems. + Not supported under Task Scheduler versions prior to 2.1. + + + + Gets the security credentials for a principal. These security credentials define the security context for the tasks that are + associated with the principal. + + Setting this value appears to break the Task Scheduler MMC and does not output in XML. Removed to prevent problems. + + + + Gets or sets the identifier that is used to specify the privilege level that is required to run the tasks that are associated + with the principal. + + Not supported under Task Scheduler 1.0. + + + + Gets or sets the user identifier that is required to run the tasks that are associated with the principal. Setting this property + to something other than a null or empty string, will set the property to NULL; + + + + Validates the supplied account against the supplied . + The user or group account name. + The SID type for the process. + true if supplied account can be used for the supplied SID type. + + + Releases all resources used by this class. + + + Gets a value indicating whether current Principal settings require a password to be provided. + true if settings requires a password to be provided; otherwise, false. + + + Returns a that represents this instance. + A that represents this instance. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + + List of security credentials for a principal under version 1.3 of the Task Scheduler. These security credentials define the security + context for the tasks that are associated with the principal. + + + + Gets the number of elements contained in the . + The number of elements contained in the . + + + Gets a value indicating whether the is read-only. + true if the is read-only; otherwise, false. + + + Gets or sets the element at the specified index. + The element at the specified index. + is not a valid index in the . + + The property is set and the is read-only. + + + + Adds an item to the . + The object to add to the . + The is read-only. + + + Determines whether the contains a specific value. + The object to locate in the . + + true if is found in the ; otherwise, false. + + + + Copies to. + The array. + Index of the array. + + + Returns an enumerator that iterates through the collection. + A that can be used to iterate through the collection. + + + Determines the index of a specific item in the . + The object to locate in the . + The index of if found in the list; otherwise, -1. + + + Removes all items from the . + The is read-only. + + + Inserts an item to the at the specified index. + The zero-based index at which should be inserted. + The object to insert into the . + is not a valid index in the . + The is read-only. + + + Removes the first occurrence of a specific object from the . + The object to remove from the . + + true if was successfully removed from the ; + otherwise, false. This method also returns false if is not found in the original . + + The is read-only. + + + Removes the item at the specified index. + The zero-based index of the item to remove. + is not a valid index in the . + The is read-only. + + + Enumerates the privileges set for a principal under version 1.3 of the Task Scheduler. + + + Gets the element in the collection at the current position of the enumerator. + The element in the collection at the current position of the enumerator. + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Advances the enumerator to the next element of the collection. + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + The collection was modified after the enumerator was created. + + + Sets the enumerator to its initial position, which is before the first element in the collection. + The collection was modified after the enumerator was created. + + + + Provides the administrative information that can be used to describe the task. This information includes details such as a + description of the task, the author of the task, the date the task is registered, and the security descriptor of the task. + + + + Occurs when a property value changes. + + + Gets or sets the author of the task. + + + Gets or sets the date and time when the task is registered. + + + Gets or sets the description of the task. + + + Gets or sets any additional documentation for the task. + + + Gets or sets the security descriptor of the task. + The security descriptor. + + + Gets or sets the security descriptor of the task. + Not supported under Task Scheduler 1.0. + + + + Gets or sets where the task originated from. For example, a task may originate from a component, service, application, or user. + + + + Gets or sets the URI of the task. + + Note: Breaking change in version 2.0. This property was previously of type . It was found that in + Windows 8, many of the native tasks use this property in a string format rather than in a URI format. + + + + Gets or sets the version number of the task. + + + Gets or sets an XML-formatted version of the registration information for the task. + + + Releases all resources used by this class. + + + Returns a that represents this instance. + A that represents this instance. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Provides the settings that the Task Scheduler service uses to perform the task. + + + Occurs when a property value changes. + + + + Gets or sets a Boolean value that indicates that the task can be started by using either the Run command or the Context menu. + + Not supported under Task Scheduler 1.0. + + + Gets or sets a Boolean value that indicates that the task may be terminated by using TerminateProcess. + Not supported under Task Scheduler 1.0. + + + Gets or sets an integer value that indicates which version of Task Scheduler a task is compatible with. + Not supported under Task Scheduler 1.0. + + + + Gets or sets the amount of time that the Task Scheduler will wait before deleting the task after it expires. If no value is + specified for this property, then the Task Scheduler service will not delete the task. + + + Gets and sets the amount of time that the Task Scheduler will wait before deleting the task after it expires. A TimeSpan value + of 1 second indicates the task is set to delete when done. A value of TimeSpan.Zero indicates that the task should not be deleted. + + + A task expires after the end boundary has been exceeded for all triggers associated with the task. The end boundary for a + trigger is specified by the EndBoundary property of all trigger types. + + + + + Gets or sets a Boolean value that indicates that the task will not be started if the computer is running on battery power. + + + + + Gets or sets a Boolean value that indicates that the task will not be started if the task is triggered to run in a Remote + Applications Integrated Locally (RAIL) session. + + Property set for a task on a Task Scheduler version prior to 2.1. + + + + Gets or sets a Boolean value that indicates that the task is enabled. The task can be performed only when this setting is TRUE. + + + + + Gets or sets the amount of time that is allowed to complete the task. By default, a task will be stopped 72 hours after it + starts to run. + + + The amount of time that is allowed to complete the task. When this parameter is set to , the + execution time limit is infinite. + + + If a task is started on demand, the ExecutionTimeLimit setting is bypassed. Therefore, a task that is started on demand will not + be terminated if it exceeds the ExecutionTimeLimit. + + + + Gets or sets a Boolean value that indicates that the task will not be visible in the UI by default. + + + Gets or sets the information that the Task Scheduler uses during Automatic maintenance. + + + Gets or sets the policy that defines how the Task Scheduler handles multiple instances of the task. + Not supported under Task Scheduler 1.0. + + + Gets or sets the priority level of the task. + The priority. + Value set to AboveNormal or BelowNormal on Task Scheduler 1.0. + + + Gets or sets the number of times that the Task Scheduler will attempt to restart the task. + + The number of times that the Task Scheduler will attempt to restart the task. If this property is set, the property must also be set. + + Not supported under Task Scheduler 1.0. + + + Gets or sets a value that specifies how long the Task Scheduler will attempt to restart the task. + + A value that specifies how long the Task Scheduler will attempt to restart the task. If this property is set, the property must also be set. The maximum time allowed is 31 days, and the minimum time allowed is 1 minute. + + Not supported under Task Scheduler 1.0. + + + + Gets or sets a Boolean value that indicates that the Task Scheduler will run the task only if the computer is in an idle condition. + + + + + Gets or sets a Boolean value that indicates that the Task Scheduler will run the task only if the user is logged on (v1.0 only) + + Property set for a task on a Task Scheduler version other than 1.0. + + + Gets or sets a Boolean value that indicates that the Task Scheduler will run the task only when a network is available. + + + + Gets or sets a Boolean value that indicates that the Task Scheduler can start the task at any time after its scheduled time has passed. + + Not supported under Task Scheduler 1.0. + + + Gets or sets a Boolean value that indicates that the task will be stopped if the computer switches to battery power. + + + Gets or sets a Boolean value that indicates that the Unified Scheduling Engine will be utilized to run this task. + Property set for a task on a Task Scheduler version prior to 2.1. + + + Gets or sets a boolean value that indicates whether the task is automatically disabled every time Windows starts. + Property set for a task on a Task Scheduler version prior to 2.2. + + + + Gets or sets a Boolean value that indicates that the Task Scheduler will wake the computer when it is time to run the task. + + + + Gets or sets an XML-formatted definition of the task settings. + + + + Gets or sets the information that specifies how the Task Scheduler performs tasks when the computer is in an idle state. + + + + + Gets or sets the network settings object that contains a network profile identifier and name. If the RunOnlyIfNetworkAvailable + property of ITaskSettings is true and a network profile is specified in the NetworkSettings property, then the task will run + only if the specified network profile is available. + + + + Releases all resources used by this class. + + + Returns a that represents this instance. + A that represents this instance. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + + Collection of running tasks in a . This class has no public constructor and can only be accessed via the + properties and functions within . + + + + Gets the number of registered tasks in the collection. + + + Gets the specified running task from the collection. + The index of the running task to be retrieved. + A instance. + + + Releases all resources used by this class. + + + Gets an IEnumerator instance for this collection. + An enumerator. + + + Returns a that represents this instance. + A that represents this instance. + + + Releases all resources used by this class. + + + + Contains all the tasks that are registered within a . This class has no public constructor and can only be + accessed via the properties and functions within . + + + Potentially breaking change in 1.6.2 and later where under V1 the list previously included the '.job' extension on the task name. + This has been removed so that it is consistent with V2. + + + public class Program + { + bool RootFolderHasTask(string taskName) + { + if (TaskService.Instance.RootFolder.Tasks.Count > 0) + { + return TaskService.Instance.RootFolder.Tasks.Exists(taskName); + } + return false; + } + + TaskCollection GetRootTasksStartingWith(string value) + { + var pattern = $"^{Regex.Escape(value)}.*$"; + return TaskService.Instance.RootFolder.GetTasks(new Regex(pattern)); + } + + public static void Main() + { + foreach (var task in GetRootTasksStartingWith("MyCo")) + if (RootFolderHasTask(task.Name)) + Console.WriteLine(task.Name); + } + } + + + + Gets the number of registered tasks in the collection. + + + Gets or sets the regular expression filter for task names. + The regular expression filter. + + + Gets the specified registered task from the collection. + The index of the registered task to be retrieved. + A instance that contains the requested context. + + + Gets the named registered task from the collection. + The name of the registered task to be retrieved. + A instance that contains the requested context. + + + Releases all resources used by this class. + + + Determines whether the specified task exists. + The name of the task. + true if task exists; otherwise, false. + + + Gets the collection enumerator for the register task collection. + An for this collection. + + + Returns a that represents this instance. + A that represents this instance. + + + Internal constructor + TaskService instance + The filter. + + + Retrieves the current task. See for more information. + + + Releases all resources used by this class. + + + Moves to the next task. See MoveNext for more information. + true if next task found, false if no more tasks. + + + Reset task enumeration. See Reset for more information. + + + + Changes to tasks and the engine that cause events. + + + + Task Scheduler started an instance of a task for a user. + For detailed information, see the documentation for Event ID 100 on TechNet. + + + Task Scheduler failed to start a task for a user. + For detailed information, see the documentation for Event ID 101 on TechNet. + + + Task Scheduler successfully finished an instance of a task for a user. + For detailed information, see the documentation for Event ID 102 on TechNet. + + + Task Scheduler failed to start an instance of a task for a user. + For detailed information, see the documentation for Event ID 103 on TechNet. + + + Task Scheduler failed to log on the user. + For detailed information, see the documentation for Event ID 104 on TechNet. + + + Task Scheduler failed to impersonate a user. + For detailed information, see the documentation for Event ID 105 on TechNet. + + + The a user registered the Task Scheduler a task. + For detailed information, see the documentation for Event ID 106 on TechNet. + + + Task Scheduler launched an instance of a task due to a time trigger. + For detailed information, see the documentation for Event ID 107 on TechNet. + + + Task Scheduler launched an instance of a task due to an event trigger. + For detailed information, see the documentation for Event ID 108 on TechNet. + + + Task Scheduler launched an instance of a task due to a registration trigger. + For detailed information, see the documentation for Event ID 109 on TechNet. + + + Task Scheduler launched an instance of a task for a user. + For detailed information, see the documentation for Event ID 110 on TechNet. + + + Task Scheduler terminated an instance of a task due to exceeding the time allocated for execution, as configured in the task definition. + For detailed information, see the documentation for Event ID 111 on TechNet. + + + Task Scheduler could not start a task because the network was unavailable. Ensure the computer is connected to the required network as specified in the task. + For detailed information, see the documentation for Event ID 112 on TechNet. + + + The Task Scheduler registered the a task, but not all the specified triggers will start the task. Ensure all the task triggers are valid. + For detailed information, see the documentation for Event ID 113 on TechNet. + + + Task Scheduler could not launch a task as scheduled. Instance is started now as required by the configuration option to start the task when available, if the scheduled time is missed. + For detailed information, see the documentation for Event ID 114 on TechNet. + + + Task Scheduler failed to roll back a transaction when updating or deleting a task. + For detailed information, see the documentation for Event ID 115 on TechNet. + + + Task Scheduler saved the configuration for a task, but the credentials used to run the task could not be stored. + For detailed information, see the documentation for Event ID 116 on TechNet. + + + Task Scheduler launched an instance of a task due to an idle condition. + For detailed information, see the documentation for Event ID 117 on TechNet. + + + Task Scheduler launched an instance of a task due to system startup. + For detailed information, see the documentation for Event ID 118 on TechNet. + + + Task Scheduler launched an instance of a task due to a user logon. + For detailed information, see the documentation for Event ID 119 on TechNet. + + + Task Scheduler launched an instance of a task due to a user connecting to the console. + For detailed information, see the documentation for Event ID 120 on TechNet. + + + Task Scheduler launched an instance of a task due to a user disconnecting from the console. + For detailed information, see the documentation for Event ID 121 on TechNet. + + + Task Scheduler launched an instance of a task due to a user remotely connecting. + For detailed information, see the documentation for Event ID 122 on TechNet. + + + Task Scheduler launched an instance of a task due to a user remotely disconnecting. + For detailed information, see the documentation for Event ID 123 on TechNet. + + + Task Scheduler launched an instance of a task due to a user locking the computer. + For detailed information, see the documentation for Event ID 124 on TechNet. + + + Task Scheduler launched an instance of a task due to a user unlocking the computer. + For detailed information, see the documentation for Event ID 125 on TechNet. + + + Task Scheduler failed to execute a task. Task Scheduler is attempting to restart the task. + For detailed information, see the documentation for Event ID 126 on TechNet. + + + Task Scheduler failed to execute a task due to a shutdown race condition. Task Scheduler is attempting to restart the task. + For detailed information, see the documentation for Event ID 127 on TechNet. + + + Task Scheduler did not launch a task because the current time exceeds the configured task end time. + For detailed information, see the documentation for Event ID 128 on TechNet. + + + Task Scheduler launched an instance of a task in a new process. + For detailed information, see the documentation for Event ID 129 on TechNet. + + + The Task Scheduler service failed to start a task due to the service being busy. + For detailed information, see the documentation for Event ID 130 on TechNet. + + + Task Scheduler failed to start a task because the number of tasks in the task queue exceeds the quota currently configured. + For detailed information, see the documentation for Event ID 131 on TechNet. + + + The Task Scheduler task launching queue quota is approaching its preset limit of tasks currently configured. + For detailed information, see the documentation for Event ID 132 on TechNet. + + + Task Scheduler failed to start a task in the task engine for a user. + For detailed information, see the documentation for Event ID 133 on TechNet. + + + Task Engine for a user is approaching its preset limit of tasks. + For detailed information, see the documentation for Event ID 134 on TechNet. + + + Task Scheduler did not launch a task because launch condition not met, machine not idle. + For detailed information, see the documentation for Event ID 135 on TechNet. + + + A user updated Task Scheduler a task + For detailed information, see the documentation for Event ID 140 on TechNet. + + + A user deleted Task Scheduler a task + For detailed information, see the documentation for Event ID 141 on TechNet. + + + A user disabled Task Scheduler a task + For detailed information, see the documentation for Event ID 142 on TechNet. + + + Task Scheduler woke up the computer to run a task. + For detailed information, see the documentation for Event ID 145 on TechNet. + + + Task Scheduler failed to subscribe the event trigger for a task. + For detailed information, see the documentation for Event ID 150 on TechNet. + + + Task Scheduler launched an action in an instance of a task. + For detailed information, see the documentation for Event ID 200 on TechNet. + + + Task Scheduler successfully completed a task instance and action. + For detailed information, see the documentation for Event ID 201 on TechNet. + + + Task Scheduler failed to complete an instance of a task with an action. + For detailed information, see the documentation for Event ID 202 on TechNet. + + + Task Scheduler failed to launch an action in a task instance. + For detailed information, see the documentation for Event ID 203 on TechNet. + + + Task Scheduler failed to retrieve the event triggering values for a task . The event will be ignored. + For detailed information, see the documentation for Event ID 204 on TechNet. + + + Task Scheduler failed to match the pattern of events for a task. The events will be ignored. + For detailed information, see the documentation for Event ID 205 on TechNet. + + + Task Scheduler is shutting down the a task engine. + For detailed information, see the documentation for Event ID 301 on TechNet. + + + Task Scheduler is shutting down the a task engine due to an error. + For detailed information, see the documentation for Event ID 303 on TechNet. + + + Task Scheduler sent a task to a task engine. + For detailed information, see the documentation for Event ID 304 on TechNet. + + + Task Scheduler did not send a task to a task engine. + For detailed information, see the documentation for Event ID 305 on TechNet. + + + For a Task Scheduler task engine, the thread pool failed to process the message. + For detailed information, see the documentation for Event ID 306 on TechNet. + + + The Task Scheduler service failed to connect to a task engine process. + For detailed information, see the documentation for Event ID 307 on TechNet. + + + Task Scheduler connected to a task engine process. + For detailed information, see the documentation for Event ID 308 on TechNet. + + + There are Task Scheduler tasks orphaned during a task engine shutdown. + For detailed information, see the documentation for Event ID 309 on TechNet. + + + Task Scheduler started a task engine process. + For detailed information, see the documentation for Event ID 310 on TechNet. + + + Task Scheduler failed to start a task engine process due to an error. + For detailed information, see the documentation for Event ID 311 on TechNet. + + + Task Scheduler created the Win32 job object for a task engine. + For detailed information, see the documentation for Event ID 312 on TechNet. + + + The Task Scheduler channel is ready to send and receive messages. + For detailed information, see the documentation for Event ID 313 on TechNet. + + + Task Scheduler has no tasks running for a task engine, and the idle timer has started. + For detailed information, see the documentation for Event ID 314 on TechNet. + + + A task engine process failed to connect to the Task Scheduler service. + For detailed information, see the documentation for Event ID 315 on TechNet. + + + A task engine failed to send a message to the Task Scheduler service. + For detailed information, see the documentation for Event ID 316 on TechNet. + + + Task Scheduler started a task engine process. + For detailed information, see the documentation for Event ID 317 on TechNet. + + + Task Scheduler shut down a task engine process. + For detailed information, see the documentation for Event ID 318 on TechNet. + + + A task engine received a message from the Task Scheduler service requesting to launch a task. + For detailed information, see the documentation for Event ID 319 on TechNet. + + + A task engine received a message from the Task Scheduler service requesting to stop a task instance. + For detailed information, see the documentation for Event ID 320 on TechNet. + + + Task Scheduler did not launch a task because an instance of the same task is already running. + For detailed information, see the documentation for Event ID 322 on TechNet. + + + Task Scheduler stopped an instance of a task in order to launch a new instance. + For detailed information, see the documentation for Event ID 323 on TechNet. + + + Task Scheduler queued an instance of a task and will launch it as soon as another instance completes. + For detailed information, see the documentation for Event ID 324 on TechNet. + + + Task Scheduler queued an instance of a task that will launch immediately. + For detailed information, see the documentation for Event ID 325 on TechNet. + + + Task Scheduler did not launch a task because the computer is running on batteries. If launching the task on batteries is required, change the respective flag in the task configuration. + For detailed information, see the documentation for Event ID 326 on TechNet. + + + Task Scheduler stopped an instance of a task because the computer is switching to battery power. + For detailed information, see the documentation for Event ID 327 on TechNet. + + + Task Scheduler stopped an instance of a task because the computer is no longer idle. + For detailed information, see the documentation for Event ID 328 on TechNet. + + + Task Scheduler stopped an instance of a task because the task timed out. + For detailed information, see the documentation for Event ID 329 on TechNet. + + + Task Scheduler stopped an instance of a task as request by a user . + For detailed information, see the documentation for Event ID 330 on TechNet. + + + Task Scheduler will continue to execute an instance of a task even after the designated timeout, due to a failure to create the timeout mechanism. + For detailed information, see the documentation for Event ID 331 on TechNet. + + + Task Scheduler did not launch a task because a user was not logged on when the launching conditions were met. Ensure the user is logged on or change the task definition to allow the task to launch when the user is logged off. + For detailed information, see the documentation for Event ID 332 on TechNet. + + + The Task Scheduler service has started. + For detailed information, see the documentation for Event ID 400 on TechNet. + + + The Task Scheduler service failed to start due to an error. + For detailed information, see the documentation for Event ID 401 on TechNet. + + + Task Scheduler service is shutting down. + For detailed information, see the documentation for Event ID 402 on TechNet. + + + The Task Scheduler service has encountered an error. + For detailed information, see the documentation for Event ID 403 on TechNet. + + + The Task Scheduler service has encountered an RPC initialization error. + For detailed information, see the documentation for Event ID 404 on TechNet. + + + The Task Scheduler service has failed to initialize COM. + For detailed information, see the documentation for Event ID 405 on TechNet. + + + The Task Scheduler service failed to initialize the credentials store. + For detailed information, see the documentation for Event ID 406 on TechNet. + + + Task Scheduler service failed to initialize LSA. + For detailed information, see the documentation for Event ID 407 on TechNet. + + + Task Scheduler service failed to initialize idle state detection module. Idle tasks may not be started as required. + For detailed information, see the documentation for Event ID 408 on TechNet. + + + The Task Scheduler service failed to initialize a time change notification. System time updates may not be picked by the service and task schedules may not be updated. + For detailed information, see the documentation for Event ID 409 on TechNet. + + + Task Scheduler service received a time system change notification. + For detailed information, see the documentation for Event ID 411 on TechNet. + + + Task Scheduler service failed to launch tasks triggered by computer startup. Restart the Task Scheduler service. + For detailed information, see the documentation for Event ID 412 on TechNet. + + + Task Scheduler service started Task Compatibility module. + For detailed information, see the documentation for Event ID 700 on TechNet. + + + Task Scheduler service failed to start Task Compatibility module. Tasks may not be able to register on previous Window versions. + For detailed information, see the documentation for Event ID 701 on TechNet. + + + Task Scheduler failed to initialize the RPC server for starting the Task Compatibility module. Tasks may not be able to register on previous Window versions. + For detailed information, see the documentation for Event ID 702 on TechNet. + + + Task Scheduler failed to initialize Net Schedule API for starting the Task Compatibility module. Tasks may not be able to register on previous Window versions. + For detailed information, see the documentation for Event ID 703 on TechNet. + + + Task Scheduler failed to initialize LSA for starting the Task Compatibility module. Tasks may not be able to register on previous Window versions. + For detailed information, see the documentation for Event ID 704 on TechNet. + + + Task Scheduler failed to start directory monitoring for the Task Compatibility module. + For detailed information, see the documentation for Event ID 705 on TechNet. + + + Task Compatibility module failed to update a task to the required status. + For detailed information, see the documentation for Event ID 706 on TechNet. + + + Task Compatibility module failed to delete a task. + For detailed information, see the documentation for Event ID 707 on TechNet. + + + Task Compatibility module failed to set a security descriptor for a task. + For detailed information, see the documentation for Event ID 708 on TechNet. + + + Task Compatibility module failed to update a task. + For detailed information, see the documentation for Event ID 709 on TechNet. + + + Task Compatibility module failed to upgrade existing tasks. Upgrade will be attempted again next time 'Task Scheduler' service starts. + For detailed information, see the documentation for Event ID 710 on TechNet. + + + Task Compatibility module failed to upgrade NetSchedule account. + For detailed information, see the documentation for Event ID 711 on TechNet. + + + Task Compatibility module failed to read existing store to upgrade tasks. + For detailed information, see the documentation for Event ID 712 on TechNet. + + + Task Compatibility module failed to load a task for upgrade. + For detailed information, see the documentation for Event ID 713 on TechNet. + + + Task Compatibility module failed to register a task for upgrade. + For detailed information, see the documentation for Event ID 714 on TechNet. + + + Task Compatibility module failed to delete LSA store for upgrade. + For detailed information, see the documentation for Event ID 715 on TechNet. + + + Task Compatibility module failed to upgrade existing scheduled tasks. + For detailed information, see the documentation for Event ID 716 on TechNet. + + + Task Compatibility module failed to determine if upgrade is needed. + For detailed information, see the documentation for Event ID 717 on TechNet. + + + Task scheduler was unable to upgrade the credential store from the Beta 2 version. You may need to re-register any tasks that require passwords. + For detailed information, see the documentation for Event ID 718 on TechNet. + + + A unknown value. + + + + Historical event information for a task. This class wraps and extends the class. + + + For events on systems prior to Windows Vista, this class will only have information for the TaskPath, TimeCreated and EventId properties. + + + + + Gets the activity id. This value is null for V1 events. + + + + + An indexer that gets the value of each of the data item values. This value is null for V1 events. + + + The data values. + + + + + Gets the event id. + + + + + Gets the underlying . This value is null for V1 events. + + + + + Gets the from the . + + + The . If not found, returns . + + + + + Gets the level. This value is null for V1 events. + + + + + Gets the op code. This value is null for V1 events. + + + + + Gets the process id. This value is null for V1 events. + + + + + Gets the record id. This value is null for V1 events. + + + + + Gets the task category. This value is null for V1 events. + + + + + Gets the task path. + + + + + Gets the time created. + + + + + Gets the user id. This value is null for V1 events. + + + + + Gets the version. This value is null for V1 events. + + + + + Gets the data value from the task specific event data item list. + + The name of the data element. + Contents of the requested data element if found. null if no value found. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Compares the current object with another object of the same type. + + An object to compare with this object. + + A 32-bit signed integer that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the other parameter.Zero This object is equal to other. Greater than zero This object is greater than other. + + + + + Get indexer class for data values. + + + + + Gets the value of the specified property name. + + + The value. + + Name of the property. + Value of the specified property name. null if property does not exist. + + + + An enumerator over a task's history of events. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Gets the element in the collection at the current position of the enumerator. + + + The element in the collection at the current position of the enumerator. + + + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + + + Advances the enumerator to the next element of the collection. + + + true if the enumerator was successfully advanced to the next element; false if the enumerator has passed the end of the collection. + + + The collection was modified after the enumerator was created. + + + + + Sets the enumerator to its initial position, which is before the first element in the collection. + + + The collection was modified after the enumerator was created. + + + + + Seeks the specified bookmark. + + The bookmark. + The offset. + + + + Seeks the specified origin. + + The origin. + The offset. + + + + Historical event log for a task. Only available for Windows Vista and Windows Server 2008 and later systems. + + Many applications have the need to audit the execution of the tasks they supply. To enable this, the library provides the TaskEventLog class that allows for TaskEvent instances to be enumerated. This can be done for single tasks or the entire system. It can also be filtered by specific events or criticality. + + + + + Initializes a new instance of the class. + + The task path. This can be retrieved using the property. + Thrown when instantiated on an OS prior to Windows Vista. + + + + Initializes a new instance of the class. + + Name of the machine. + The task path. This can be retrieved using the property. + The domain. + The user. + The password. + Thrown when instantiated on an OS prior to Windows Vista. + + + + Initializes a new instance of the class that looks at all task events from a specified time. + + The start time. + Name of the task. + Name of the machine (optional). + The domain. + The user. + The password. + + + + Initializes a new instance of the class. + + Name of the task. + The event ids. + The start time. + Name of the machine (optional). + The domain. + The user. + The password. + + + + Initializes a new instance of the class. + + Name of the task. + The event ids. + The levels. + The start time. + Name of the machine (optional). + The domain. + The user. + The password. + + + + Gets the total number of events for this task. + + + + + Gets or sets a value indicating whether this is enabled. + + + true if enabled; otherwise, false. + + + + + Gets or sets a value indicating whether to enumerate in reverse when calling the default enumerator (typically with foreach statement). + + + true if enumerates in reverse (newest to oldest) by default; otherwise, false to enumerate oldest to newest. + + + + + Returns an enumerator that iterates through the collection. + + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through the collection. + + if set to true reverse. + + A that can be used to iterate through the collection. + + + + + Returns an enumerator that iterates through a collection. + + + An object that can be used to iterate through the collection. + + + + + Information about the task event. + + + + + If possible, gets the task associated with this event. + + + The task or null if unable to retrieve. + + + + + Gets the . + + + The TaskEvent. + + + + + Gets the task name. + + + The task name. + + + + + Gets the task path. + + + The task path. + + + + + Watches system events related to tasks and issues a event when the filtered conditions are met. + Only available for Task Scheduler 2.0 on Windows Vista or Windows Server 2003 and later. + + Sometimes, a developer will need to know about events as they occur. In this case, they can use the TaskEventWatcher component that enables the developer to watch a task, a folder, or the entire system for filtered events. + + Below is information on how to watch a folder for all task events. For a complete example, look at this sample project: TestTaskWatcher.zip + + + + + Initializes a new instance of the class. If other + properties are not set, this will watch for all events for all tasks on the local machine. + + + + + Initializes a new instance of the class watching only + those events for the task with the provided path on the local machine. + + The full path (folders and name) of the task to watch. + The task service. + $Invalid task name: {taskPath} + + + + Initializes a new instance of the class watching only + those events for the specified task. + + The task to watch. + Occurs if the is null. + + + + Initializes a new instance of the class watching only those events for + the tasks whose name matches the in the specified + and optionally all subfolders. + + The task folder to watch. + The filter for task names using standard file system wildcards. Use "*" to include all tasks. + if set to true include events from tasks subfolders. + Occurs if the is null. + + + + Initializes a new instance of the class. + + The task folder to watch. + The filter for task names using standard file system wildcards. Use "*" to include all tasks. + if set to true include events from tasks subfolders. + The task service. + + + + Initializes a new instance of the class on a remote machine. + + Name of the remote machine. + The task path. + The domain of the user account. + The user name with permissions on the remote machine. + The password for the user. + + + + Initializes a new instance of the class on a remote machine. + + Name of the remote machine. + The task folder to watch. + The filter for task names using standard file system wildcards. Use "*" to include all tasks. + if set to true include events from tasks subfolders. + The domain of the user account. + The user name with permissions on the remote machine. + The password for the user. + + + + Occurs when a task or the task engine records an event. + + + + + Gets or sets a value indicating whether the component is enabled. + + + true if enabled; otherwise, false. + + + + + Gets the filter for this . + + + The filter. + + + + + Gets or sets the folder to watch. + + + The folder path to watch. This value should include the leading "\" to indicate the root folder. + + Thrown if the folder specified does not exist or contains invalid characters. + + + + Gets or sets a value indicating whether to include events from subfolders when the + property is set. If the property is set, + this property is ignored. + + true if include events from subfolders; otherwise, false. + + + + Gets or sets the synchronizing object. + + + The synchronizing object. + + + + + Gets or sets the name of the computer that is running the Task Scheduler service that the user is connected to. + + + + + Gets or sets the instance associated with this event watcher. Setting this value + will override any values set for , , + , and and set them to those values in the supplied + instance. + + The TaskService. + + + + Gets or sets the user account domain to be used when connecting to the . + + The user account domain. + + + + Gets or sets the user name to be used when connecting to the . + + The user name. + + + + Gets or sets the user password to be used when connecting to the . + + The user password. + + + + Gets a value indicating if watching is available. + + + + + Signals the object that initialization is starting. + + + + + Signals the object that initialization is complete. + + + + + Releases the unmanaged resources used by the FileSystemWatcher and optionally releases the managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + + Fires the event. + + The sender. + The instance containing the event data. + + + + Holds filter information for a . + + + + + Gets or sets an optional array of event identifiers to use when filtering those events that will fire a event. + + + The array of event identifier filters. All know task event identifiers are declared in the enumeration. + + + + + Gets or sets an optional array of event levels to use when filtering those events that will fire a event. + + + The array of event levels. While event providers can define custom levels, most will use integers defined in the System.Diagnostics.Eventing.Reader.StandardEventLevel enumeration. + + + + + Gets or sets the task name, which can utilize wildcards, to look for when watching a folder. + + A task name or wildcard. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Provides the methods that are used to register (create) tasks in the folder, remove tasks from the folder, and create or remove subfolders from the folder. + + + + + Releases all resources used by this class. + + + + + Gets a which enumerates all the tasks in this and all subfolders. + + + A for all instances. + + + + + Gets the name that is used to identify the folder that contains a task. + + + + + Gets the parent folder of this folder. + + + The parent folder, or null if this folder is the root folder. + + + + + Gets the path to where the folder is stored. + + + + + Gets or sets the security descriptor of the task. + + The security descriptor. + + + + Gets all the subfolders in the folder. + + + + + Gets a collection of all the tasks in the folder. + + + + + Gets or sets the that manages this task. + + The task service. + + + + Compares the current object with another object of the same type. + + An object to compare with this object. + + A value that indicates the relative order of the objects being compared. The return value has the following meanings: Value Meaning Less than zero This object is less than the parameter.Zero This object is equal to . Greater than zero This object is greater than . + + + + + Creates a folder for related tasks. Not available to Task Scheduler 1.0. + + The name used to identify the folder. If "FolderName\SubFolder1\SubFolder2" is specified, the entire folder tree will be created if the folders do not exist. This parameter can be a relative path to the current instance. The root task folder is specified with a backslash (\). An example of a task folder path, under the root task folder, is \MyTaskFolder. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + The security descriptor associated with the folder. + A instance that represents the new subfolder. + + + + Creates a folder for related tasks. Not available to Task Scheduler 1.0. + + The name used to identify the folder. If "FolderName\SubFolder1\SubFolder2" is specified, the entire folder tree will be created if the folders do not exist. This parameter can be a relative path to the current instance. The root task folder is specified with a backslash (\). An example of a task folder path, under the root task folder, is \MyTaskFolder. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + The task security associated with the folder. + A instance that represents the new subfolder. + + + + Creates a folder for related tasks. Not available to Task Scheduler 1.0. + + The name used to identify the folder. If "FolderName\SubFolder1\SubFolder2" is specified, the entire folder tree will be created if the folders do not exist. This parameter can be a relative path to the current instance. The root task folder is specified with a backslash (\). An example of a task folder path, under the root task folder, is \MyTaskFolder. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + The security descriptor associated with the folder. + Set this value to false to avoid having an exception called if the folder already exists. + A instance that represents the new subfolder. + Security descriptor mismatch between specified credentials and credentials on existing folder by same name. + Invalid SDDL form. + Not supported under Task Scheduler 1.0. + + + + Deletes a subfolder from the parent folder. Not available to Task Scheduler 1.0. + + The name of the subfolder to be removed. The root task folder is specified with a backslash (\). This parameter can be a relative path to the folder you want to delete. An example of a task folder path, under the root task folder, is \MyTaskFolder. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + Set this value to false to avoid having an exception called if the folder does not exist. + Not supported under Task Scheduler 1.0. + + + Deletes a task from the folder. + + The name of the task that is specified when the task was registered. The '.' character cannot be used to specify the current task folder and the '..' + characters cannot be used to specify the parent task folder in the path. + + Set this value to false to avoid having an exception called if the task does not exist. + + + Returns an enumerable collection of folders that matches a specified filter and recursion option. + An optional predicate used to filter the returned instances. + An enumerable collection of folders that matches . + + + Returns an enumerable collection of tasks that matches a specified filter and recursion option. + An optional predicate used to filter the returned instances. + Specifies whether the enumeration should include tasks in any subfolders. + An enumerable collection of directories that matches and . + + + Determines whether the specified , is equal to this instance. + The to compare with this instance. + true if the specified is equal to this instance; otherwise, false. + + + + Gets a object that encapsulates the specified type of access control list (ACL) entries for the task described by the + current object. + + A object that encapsulates the access control rules for the current folder. + + + + Gets a object that encapsulates the specified type of access control list (ACL) entries for the task folder described by + the current object. + + + One of the values that specifies which group of access control entries to retrieve. + + A object that encapsulates the access control rules for the current folder. + + + Returns a hash code for this instance. + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + Gets the security descriptor for the folder. Not available to Task Scheduler 1.0. + Section(s) of the security descriptor to return. + The security descriptor for the folder. + + + + Gets the security descriptor for the folder. Not available to Task Scheduler 1.0. + + Section(s) of the security descriptor to return. + The security descriptor for the folder. + Not supported under Task Scheduler 1.0. + + + + Gets a collection of all the tasks in the folder whose name matches the optional . + + The optional name filter expression. + Collection of all matching tasks. + + + Imports a from an XML file. + The task name. If this value is NULL, the task will be registered in the root task folder and the task name will be a GUID value that is created by the Task Scheduler service. A task name cannot begin or end with a space character. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + The file containing the XML-formatted definition of the task. + If set to , overwrites any existing task with the same name. + A instance that represents the new task. + Importing from an XML file is only supported under Task Scheduler 2.0. + + + + Registers (creates) a new task in the folder using XML to define the task. + + The task name. If this value is NULL, the task will be registered in the root task folder and the task name will be a GUID value that is created by the Task Scheduler service. A task name cannot begin or end with a space character. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + An XML-formatted definition of the task. + A union of flags. + The user credentials used to register the task. + The password for the userId used to register the task. + A value that defines what logon technique is used to run the registered task. + The security descriptor associated with the registered task. You can specify the access control list (ACL) in the security descriptor for a task in order to allow or deny certain users and groups access to a task. + A instance that represents the new task. + " + + "" + + " " + + " " + + " S-1-5-18" + + " " + + " " + + " " + + " " + + " 2017-09-04T14:04:03" + + " " + + " " + + " " + + " " + + " " + + " cmd" + + " " + + " " + + ""; + // Register the task in the root folder of the local machine using the SYSTEM account defined in XML + TaskService.Instance.RootFolder.RegisterTaskDefinition("Test", xml); + ]]> + + + + Registers (creates) a task in a specified location using a instance to define a task. + + The task name. If this value is NULL, the task will be registered in the root task folder and the task name will be a GUID value that is created by the Task Scheduler service. A task name cannot begin or end with a space character. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + The of the registered task. + A instance that represents the new task. + + + + + + Registers (creates) a task in a specified location using a instance to define a task. + + The task name. If this value is NULL, the task will be registered in the root task folder and the task name will be a GUID value that is created by the Task Scheduler service. A task name cannot begin or end with a space character. The '.' character cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + The of the registered task. + A union of flags. + The user credentials used to register the task. + The password for the userId used to register the task. + A value that defines what logon technique is used to run the registered task. + The security descriptor associated with the registered task. You can specify the access control list (ACL) in the security descriptor for a task in order to allow or deny certain users and groups access to a task. + + A instance that represents the new task. This will return null if is set to ValidateOnly and there are no validation errors. + + + Task names may not include any characters which are invalid for file names. + or + Task names ending with a period followed by three or fewer characters cannot be retrieved due to a bug in the native library. + + This LogonType is not supported on Task Scheduler 1.0. + or + Security settings are not available on Task Scheduler 1.0. + or + Registration triggers are not available on Task Scheduler 1.0. + or + XML validation not available on Task Scheduler 1.0. + This method is effectively the "Save" method for tasks. It takes a modified TaskDefinition instance and registers it in the folder defined by this TaskFolder instance. Optionally, you can use this method to override the user, password and logon type defined in the definition and supply security against the task. + + This first example registers a simple task with a single trigger and action using the default security. + + This example registers that same task using the SYSTEM account. + + This example registers that same task using a specific username and password along with a security definition. + + + + + Applies access control list (ACL) entries described by a object to the file described by the current object. + + A object that describes an access control list (ACL) entry to apply to the current folder. + + + + Sets the security descriptor for the folder. Not available to Task Scheduler 1.0. + + The security descriptor for the folder. + Section(s) of the security descriptor to set. + + + + Sets the security descriptor for the folder. Not available to Task Scheduler 1.0. + + The security descriptor for the folder. + Flags that specify how to set the security descriptor. + Not supported under Task Scheduler 1.0. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Enumerates the tasks in the specified folder and its child folders. + + The folder in which to start enumeration. + An optional filter to apply to the task list. + true if subfolders are to be queried recursively. + A that can be used to iterate through the tasks. + + + Provides information and control for a collection of folders that contain tasks. + + + Occurs when a collection changes. + + + Occurs when a property value changes. + + + Gets the number of items in the collection. + + + Gets a value indicating whether the is read-only. + + + Gets the specified folder from the collection. + The index of the folder to be retrieved. + A TaskFolder instance that represents the requested folder. + + + Gets the specified folder from the collection. + The path of the folder to be retrieved. + A TaskFolder instance that represents the requested folder. + + + Adds an item to the . + The object to add to the . + + This action is technically unfeasible due to limitations of the underlying library. Use the instead. + + + + Removes all items from the . + + + Determines whether the contains a specific value. + The object to locate in the . + true if is found in the ; otherwise, false. + + + Copies the elements of the ICollection to an Array, starting at a particular Array index. + + The one-dimensional Array that is the destination of the elements copied from . The Array must have + zero-based indexing. + + The zero-based index in array at which copying begins. + + + Releases all resources used by this class. + + + Determines whether the specified folder exists. + The path of the folder. + true if folder exists; otherwise, false. + + + Gets a list of items in a collection. + Enumerated list of items in the collection. + + + Removes the first occurrence of a specific object from the . + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method + also returns false if is not found in the original . + + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + + Defines the methods that are called by the Task Scheduler service to manage a COM handler. + + + This interface must be implemented for a task to perform a COM handler action. When the Task Scheduler performs a COM handler action, it creates and activates the handler and calls the methods of this interface as needed. For information on specifying a COM handler action, see the class. + + + + + Called to start the COM handler. This method must be implemented by the handler. + + An IUnkown interface that is used to communicate back with the Task Scheduler. + The arguments that are required by the handler. These arguments are defined in the property of the COM handler action. + + + + Called to stop the COM handler. This method must be implemented by the handler. + + The return code that the Task Schedule will raise as an event when the COM handler action is completed. + + + + Called to pause the COM handler. This method is optional and should only be implemented to give the Task Scheduler the ability to pause and restart the handler. + + + + + Called to resume the COM handler. This method is optional and should only be implemented to give the Task Scheduler the ability to resume the handler. + + + + + Provides the methods that are used by COM handlers to notify the Task Scheduler about the status of the handler. + + + + + Tells the Task Scheduler about the percentage of completion of the COM handler. + + A value that indicates the percentage of completion for the COM handler. + The message that is displayed in the Task Scheduler UI. + + + + Tells the Task Scheduler that the COM handler is completed. + + The error code that the Task Scheduler will raise as an event. + + + + Specifies the access control rights that can be applied to Task Scheduler tasks. + + + + Specifies the right to exert full control over a task folder or task, and to modify access control and audit rules. This value represents the right to do anything with a task and is the combination of all rights in this enumeration. + + + Specifies the right to create tasks and folders, and to add or remove data from tasks. This right includes the following rights: . + + + Specifies the right to open and copy folders or tasks as read-only. This right includes the following rights: . + + + Specifies the right run tasks. This right includes the following rights: . + + + The right to wait on a task. + + + The right to change the owner of a task. + + + Specifies the right to change the security and audit rules associated with a task or folder. + + + The right to open and copy the access rules and audit rules for a task. + + + The right to delete a folder or task. + + + Specifies the right to open and write file system attributes to a folder or file. This does not include the ability to write data, extended attributes, or access and audit rules. + + + Specifies the right to open and copy file system attributes from a folder or task. For example, this value specifies the right to view the file creation or modified date. This does not include the right to read data, extended file system attributes, or access and audit rules. + + + Specifies the right to delete a folder and any tasks contained within that folder. + + + Specifies the right to run a task. + + + Specifies the right to open and write extended file system attributes to a folder or file. This does not include the ability to write data, attributes, or access and audit rules. + + + Specifies the right to open and copy extended system attributes from a folder or task. For example, this value specifies the right to view author and content information. This does not include the right to read data, system attributes, or access and audit rules. + + + Specifies the right to append data to the end of a file. + + + Specifies the right to open and write to a file or folder. This does not include the right to open and write file system attributes, extended file system attributes, or access and audit rules. + + + Specifies the right to open and copy a task or folder. This does not include the right to read file system attributes, extended file system attributes, or access and audit rules. + + + + Represents a set of access rights allowed or denied for a user or group. This class cannot be inherited. + + + + + Initializes a new instance of the class, specifying the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. + + The user or group the rule applies to. Must be of type or a type such as that can be converted to type . + A bitwise combination of values specifying the rights allowed or denied. + One of the values specifying whether the rights are allowed or denied. + + + + Initializes a new instance of the class, specifying the name of the user or group the rule applies to, the access rights, and whether the specified access rights are allowed or denied. + + The name of the user or group the rule applies to. + A bitwise combination of values specifying the rights allowed or denied. + One of the values specifying whether the rights are allowed or denied. + + + + Gets the rights allowed or denied by the access rule. + + + A bitwise combination of values indicating the rights allowed or denied by the access rule. + + + + + Represents a set of access rights to be audited for a user or group. This class cannot be inherited. + + + + + Initializes a new instance of the class, specifying the user or group to audit, the rights to audit, and whether to audit success, failure, or both. + + The user or group the rule applies to. Must be of type or a type such as that can be converted to type . + A bitwise combination of values specifying the kinds of access to audit. + The audit flags. + + + + Gets the access rights affected by the audit rule. + + + A bitwise combination of values that indicates the rights affected by the audit rule. + + objects are immutable. You can create a new audit rule representing a different user, different rights, or a different combination of AuditFlags values, but you cannot modify an existing audit rule. + + + + Represents the Windows access control security for a Task Scheduler task. This class cannot be inherited. + + + A TaskSecurity object specifies access rights for a Task Scheduler task, and also specifies how access attempts are audited. Access rights to the task are expressed as rules, with each access rule represented by a object. Each auditing rule is represented by a object. + This mirrors the underlying Windows security system, in which each securable object has at most one discretionary access control list (DACL) that controls access to the secured object, and at most one system access control list (SACL) that specifies which access attempts are audited. The DACL and SACL are ordered lists of access control entries (ACE) that specify access and auditing for users and groups. A or object might represent more than one ACE. + Note + A object can represent a local task or a Task Scheduler task. Windows access control security is meaningful only for Task Scheduler tasks. + The TaskSecurity, , and classes hide the implementation details of ACLs and ACEs. They allow you to ignore the seventeen different ACE types and the complexity of correctly maintaining inheritance and propagation of access rights. These objects are also designed to prevent the following common access control errors: + + Creating a security descriptor with a null DACL. A null reference to a DACL allows any user to add access rules to an object, potentially creating a denial-of-service attack. A new TaskSecurity object always starts with an empty DACL, which denies all access for all users. + Violating the canonical ordering of ACEs. If the ACE list in the DACL is not kept in the canonical order, users might inadvertently be given access to the secured object. For example, denied access rights must always appear before allowed access rights. TaskSecurity objects maintain the correct order internally. + Manipulating security descriptor flags, which should be under resource manager control only. + Creating invalid combinations of ACE flags. + Manipulating inherited ACEs. Inheritance and propagation are handled by the resource manager, in response to changes you make to access and audit rules. + Inserting meaningless ACEs into ACLs. + + The only capabilities not supported by the .NET security objects are dangerous activities that should be avoided by the majority of application developers, such as the following: + + Low-level tasks that are normally performed by the resource manager. + Adding or removing access control entries in ways that do not maintain the canonical ordering. + + To modify Windows access control security for a task, use the method to get the TaskSecurity object. Modify the security object by adding and removing rules, and then use the method to reattach it. + Important: Changes you make to a TaskSecurity object do not affect the access levels of the task until you call the method to assign the altered security object to the task. + To copy access control security from one task to another, use the method to get a TaskSecurity object representing the access and audit rules for the first task, then use the method, or a constructor that accepts a TaskSecurity object, to assign those rules to the second task. + Users with an investment in the security descriptor definition language (SDDL) can use the method to set access rules for a task, and the method to obtain a string that represents the access rules in SDDL format. This is not recommended for new development. + + + + + Initializes a new instance of the class with default values. + + + + + Initializes a new instance of the class with the specified sections of the access control security rules from the specified task. + + The task. + The sections of the ACL to retrieve. + + + + Initializes a new instance of the class with the specified sections of the access control security rules from the specified task. + + The folder. + The sections of the ACL to retrieve. + + + + Gets the enumeration that the class uses to represent access rights. + + A object representing the enumeration. + + + + Gets the type that the TaskSecurity class uses to represent access rules. + + A object representing the class. + + + + Gets the type that the TaskSecurity class uses to represent audit rules. + + A object representing the class. + + + + Gets a object that represent the default access rights. + + The default task security. + + + + Creates a new access control rule for the specified user, with the specified access rights, access control, and flags. + + An that identifies the user or group the rule applies to. + A bitwise combination of values specifying the access rights to allow or deny, cast to an integer. + Meaningless for tasks, because they have no hierarchy. + Meaningless for tasks, because they have no hierarchy. + Meaningless for tasks, because they have no hierarchy. + One of the values specifying whether the rights are allowed or denied. + + The object that this method creates. + + + + + Searches for a matching rule with which the new rule can be merged. If none are found, adds the new rule. + + The access control rule to add. + + + + Searches for an audit rule with which the new rule can be merged. If none are found, adds the new rule. + + The audit rule to add. The user specified by this rule determines the search. + + + + Creates a new audit rule, specifying the user the rule applies to, the access rights to audit, and the outcome that triggers the audit rule. + + An that identifies the user or group the rule applies to. + A bitwise combination of values specifying the access rights to audit, cast to an integer. + Meaningless for tasks, because they have no hierarchy. + Meaningless for tasks, because they have no hierarchy. + Meaningless for tasks, because they have no hierarchy. + One of the values specifying whether to audit successful access, failed access, or both. + + A object representing the specified audit rule for the specified user. The return type of the method is the base class, , but the return value can be cast safely to the derived class. + + + + + Searches for an access control rule with the same user and (allow or deny) as the specified rule, and with compatible inheritance and propagation flags; if such a rule is found, the rights contained in the specified access rule are removed from it. + + A that specifies the user and to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. + true if a compatible rule is found; otherwise false. + + + + Searches for all access control rules with the same user and (allow or deny) as the specified rule and, if found, removes them. + + A that specifies the user and to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Any rights specified by this rule are ignored. + + + + Searches for an access control rule that exactly matches the specified rule and, if found, removes it. + + The to remove. + + + + Searches for an audit control rule with the same user as the specified rule, and with compatible inheritance and propagation flags; if a compatible rule is found, the rights contained in the specified rule are removed from it. + + A that specifies the user to search for, and a set of inheritance and propagation flags that a matching rule, if found, must be compatible with. Specifies the rights to remove from the compatible rule, if found. + true if a compatible rule is found; otherwise false. + + + + Searches for all audit rules with the same user as the specified rule and, if found, removes them. + + A that specifies the user to search for. Any rights specified by this rule are ignored. + + + + Searches for an audit rule that exactly matches the specified rule and, if found, removes it. + + The to remove. + + + + Removes all access control rules with the same user as the specified rule, regardless of , and then adds the specified rule. + + The to add. The user specified by this rule determines the rules to remove before this rule is added. + + + + Removes all access control rules with the same user and (allow or deny) as the specified rule, and then adds the specified rule. + + The to add. The user and of this rule determine the rules to remove before this rule is added. + + + + Removes all audit rules with the same user as the specified rule, regardless of the value, and then adds the specified rule. + + The to add. The user specified by this rule determines the rules to remove before this rule is added. + + + + Returns a that represents this instance. + + + A that represents this instance. + + + + + Saves the specified sections of the security descriptor associated with this object to permanent storage. We recommend that the values of the parameters passed to the constructor and persist methods be identical. + + The task used to retrieve the persisted information. + One of the enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. + + + + Saves the specified sections of the security descriptor associated with this object to permanent storage. We recommend that the values of the parameters passed to the constructor and persist methods be identical. + + The task folder used to retrieve the persisted information. + One of the enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. + + + + Saves the specified sections of the security descriptor associated with this object to permanent storage. We recommend that the values of the parameters passed to the constructor and persist methods be identical. For more information, see Remarks. + + The name used to retrieve the persisted information. + One of the enumeration values that specifies the sections of the security descriptor (access rules, audit rules, owner, primary group) of the securable object to save. + + + + Quick simple trigger types for the + method. + + + + At boot. + + + On system idle. + + + At logon of any user. + + + When the task is registered. + + + Hourly, starting now. + + + Daily, starting now. + + + Weekly, starting now. + + + Monthly, starting now. + + + + Known versions of the native Task Scheduler library. This can be used as a decoder for the + and values. + + + + Task Scheduler 1.0 (Windows Server™ 2003, Windows® XP, or Windows® 2000). + + + Task Scheduler 2.0 (Windows Vista™, Windows Server™ 2008). + + + Task Scheduler 2.1 (Windows® 7, Windows Server™ 2008 R2). + + + Task Scheduler 2.2 (Windows® 8.x, Windows Server™ 2012). + + + Task Scheduler 2.3 (Windows® 10, Windows Server™ 2016). + + + Task Scheduler 2.3 (Windows® 10, Windows Server™ 2016 post build 1703). + + + Provides access to the Task Scheduler service for managing registered tasks. + + + Creates a new instance of a TaskService connecting to the local machine as the current user. + + + Initializes a new instance of the class. + + The name of the computer that you want to connect to. If the this parameter is empty, then this will connect to the local computer. + + + The user name that is used during the connection to the computer. If the user is not specified, then the current token is used. + + The domain of the user specified in the parameter. + + The password that is used to connect to the computer. If the user name and password are not specified, then the current token is used. + + If set to true force Task Scheduler 1.0 compatibility. + + + Delegate for methods that support update calls during COM handler execution. + The percentage of completion (0 to 100). + An optional message. + + + Occurs when the Task Scheduler is connected to the local or remote target. + + + Occurs when the Task Scheduler is disconnected from the local or remote target. + + + Gets a local instance of the using the current user's credentials. + Local user instance. + + + + Gets the library version. This is the highest version supported by the local library. Tasks cannot be created using any + compatibility level higher than this version. + + The library version. + + The following table list the various versions and their host operating system: + + + Version + Operating System + + + 1.1 + Task Scheduler 1.0 (Windows Server™ 2003, Windows® XP, or Windows® 2000). + + + 1.2 + Task Scheduler 2.0 (Windows Vista™, Windows Server™ 2008). + + + 1.3 + Task Scheduler 2.1 (Windows® 7, Windows Server™ 2008 R2). + + + 1.4 + Task Scheduler 2.2 (Windows® 8.x, Windows Server™ 2012). + + + 1.5 + Task Scheduler 2.3 (Windows® 10, Windows Server™ 2016). + + + 1.6 + Task Scheduler 2.4 (Windows® 10 Version 1703, Windows Server™ 2016 Version 1703). + + + + + + + Gets or sets a value indicating whether to allow tasks from later OS versions with new properties to be retrieved as read only tasks. + + true if allow read only tasks; otherwise, false. + + + Gets the name of the domain to which the computer is connected. + + + Gets the name of the user that is connected to the Task Scheduler service. + + + Gets the highest version of Task Scheduler that a computer supports. + + The following table list the various versions and their host operating system: + + + Version + Operating System + + + 1.1 + Task Scheduler 1.0 (Windows Server™ 2003, Windows® XP, or Windows® 2000). + + + 1.2 + Task Scheduler 2.0 (Windows Vista™, Windows Server™ 2008). + + + 1.3 + Task Scheduler 2.1 (Windows® 7, Windows Server™ 2008 R2). + + + 1.4 + Task Scheduler 2.2 (Windows® 8.x, Windows Server™ 2012). + + + 1.5 + Task Scheduler 2.3 (Windows® 10, Windows Server™ 2016). + + + 1.6 + Task Scheduler 2.4 (Windows® 10 Version 1703, Windows Server™ 2016 Version 1703). + + + + + + Gets the root ("\") folder. For Task Scheduler 1.0, this is the only folder. + + + Gets or sets the name of the computer that is running the Task Scheduler service that the user is connected to. + + + Gets or sets the user account domain to be used when connecting to the . + The user account domain. + + + Gets or sets the user name to be used when connecting to the . + The user name. + + + Gets or sets the user password to be used when connecting to the . + The user password. + + + Gets a which enumerates all the tasks in all folders. + A for all instances. + + + Gets a Boolean value that indicates if you are connected to the Task Scheduler service. + + + + Gets the connection token for this instance. This token is thread safe and can be used to create new + instances on other threads using the static method. + + The connection token. + + + Gets a value indicating whether the component can raise an event. + + + + Creates a new instance from a token. Given that a TaskService instance is thread specific, this is the + preferred method for multi-thread creation or asynchronous method parameters. + + The token. + A instance valid for the thread calling this method. + + + Gets a formatted string that tells the Task Scheduler to retrieve a string from a resource .dll file. + The path to the .dll file that contains the resource. + The identifier for the resource text (typically a negative number). + A string in the format of $(@ [dllPath], [resourceId]). + + For example, the setting this property value to $(@ %SystemRoot%\System32\ResourceName.dll, -101) will set the property to the + value of the resource text with an identifier equal to -101 in the %SystemRoot%\System32\ResourceName.dll file. + + + + + Runs an action that is defined via a COM handler. COM CLSID must be registered to an object that implements the + interface. + + The CLSID of the COM object. + An optional string passed to the COM object at startup. + The number of milliseconds to wait or -1 for indefinitely. + + An optional delegate that is called when the COM object calls the + method. + + The value set by the COM object via a call to the method. + + + + Runs an action that is defined via a COM handler. COM CLSID must be registered to an object that implements the + interface. + + The CLSID of the COM object. + The action to run on thread completion. + An optional string passed to the COM object at startup. + The number of milliseconds to wait or -1 for indefinitely. + + An optional delegate that is called when the COM object calls the + method. + + + + Adds or updates an Automatic Maintenance Task on the connected machine. + Name of the task with full path. + The amount of time the task needs once executed during regular Automatic maintenance. + + The amount of time after which the Task Scheduler attempts to run the task during emergency Automatic maintenance, if the task + failed to complete during regular Automatic Maintenance. + + The path to an executable file. + The arguments associated with the command-line operation. + + The directory that contains either the executable file or the files that are used by the executable file. + + A instance of the Automatic Maintenance Task. + + Automatic Maintenance tasks are only supported on Windows 8/Server 2012 and later. + + + + Creates a new task, registers the task, and returns the instance. + + The task name. If this value is NULL, the task will be registered in the root task folder and the task name will be a GUID value + that is created by the Task Scheduler service. A task name cannot begin or end with a space character. The '.' character cannot + be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + + The to determine when to run the task. + The to determine what happens when the task is triggered. + The user credentials used to register the task. + The password for the userId used to register the task. + + A value that defines what logon technique is used to run the registered task. + + The task description. + A instance of the registered task. + + This method is shorthand for creating a new TaskDescription, adding a trigger and action, and then registering it in the root folder. + + + + + + + + + Creates a new task, registers the task, and returns the instance. + + The task name. If this value is NULL, the task will be registered in the root task folder and the task name will be a GUID value + that is created by the Task Scheduler service. A task name cannot begin or end with a space character. The '.' character cannot + be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + + The to determine when to run the task. + The executable path. + The arguments (optional). Value can be NULL. + The user credentials used to register the task. + The password for the userId used to register the task. + + A value that defines what logon technique is used to run the registered task. + + The task description. + A instance of the registered task. + + + + + + + + Signals the object that initialization is starting. + + + Signals the object that initialization is complete. + + + Determines whether the specified , is equal to this instance. + The to compare with this instance. + true if the specified is equal to this instance; otherwise, false. + + + Finds all tasks matching a name or standard wildcards. + Name of the task in regular expression form. + if set to true search all sub folders. + An array of containing all tasks matching . + + + Finds all tasks matching a name or standard wildcards. + The filter used to determine tasks to select. + if set to true search all sub folders. + An array of containing all tasks matching . + + + Finds a task given a name and standard wildcards. + The task name. This can include the wildcards * or ?. + if set to true search all sub folders. + A if one matches , otherwise NULL. + + + Gets the event log for this instance. + (Optional) The task path if only the events for a single task are desired. + A instance. + + + Gets the path to a folder of registered tasks. + + The path to the folder to retrieve. Do not use a backslash following the last folder name in the path. The root task folder is + specified with a backslash (\). An example of a task folder path, under the root task folder, is \MyTaskFolder. The '.' character + cannot be used to specify the current task folder and the '..' characters cannot be used to specify the parent task folder in the path. + + instance for the requested folder or null if was unrecognized. + + Folder other than the root (\) was requested on a system not supporting Task Scheduler 2.0. + + + + Returns a hash code for this instance. + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + Gets a collection of running tasks. + True to include hidden tasks. + instance with the list of running tasks. + + + Gets the task with the specified path. + The task path. + + The instance matching the , if found. If not found, this method returns null. + + + + + Returns an empty task definition object to be filled in with settings and properties and then registered using the + method. + + A instance for setting properties. + + + Returns a populated with the properties defined in an XML file. + The XML file to use as input. + A instance. + Importing from an XML file is only supported under Task Scheduler 2.0. + + + Starts the Task Scheduler UI for the OS hosting the assembly if the session is running in interactive mode. + + + + Releases the unmanaged resources used by the and optionally releases the managed resources. + + true to release both managed and unmanaged resources; false to release only unmanaged resources. + + + Connects this instance of the class to a running Task Scheduler. + + + Finds the task in folder. + The folder. + The wildcard expression to compare task names with. + The results. + if set to true recurse folders. + True if any tasks are found, False if not. + + + Finds the task in folder. + The folder. + The filter to use when looking for tasks. + The results. + if set to true recurse folders. + True if any tasks are found, False if not. + + + + Represents a valid, connected session to a Task Scheduler instance. This token is thread-safe and should be the means of passing + information about a between threads. + + + + Initial call for a Fluent model of creating a task. + The path of the program to run. + An instance. + + + + Abstract base class which provides the common properties that are inherited by all trigger classes. A trigger can be created using + the or the method. + + + + Creates a trigger using a cron string. + String using cron defined syntax for specifying a time interval. See remarks for syntax. + Array of representing the specified cron string. + Unsupported cron string. + + This method does not support all combinations of cron strings. Please test extensively before use. Please post an issue with any + syntax that should work, but doesn't. + The following combinations are known not to work: + + Intervals on months (e.g. "* * * */5 *") + Intervals on DOW (e.g. "* * * * MON/3") + + + This section borrows liberally from the site http://www.nncron.ru/help/EN/working/cron-format.htm. The cron format consists of five fields separated + by white spaces: + + + <Minute> <Hour> <Day_of_the_Month> <Month_of_the_Year> <Day_of_the_Week> + + Each item has bounds as defined by the following: + + * * * * * + | | | | | + | | | | +---- Day of the Week (range: 1-7, 1 standing for Monday) + | | | +------ Month of the Year (range: 1-12) + | | +-------- Day of the Month (range: 1-31) + | +---------- Hour (range: 0-23) + +------------ Minute (range: 0-59) + + Any of these 5 fields may be an asterisk (*). This would mean the entire range of possible values, i.e. each minute, each hour, etc. + + Any of the first 4 fields can be a question mark ("?"). It stands for the current time, i.e. when a field is processed, the current time will be + substituted for the question mark: minutes for Minute field, hour for Hour field, day of the month for Day of month field and month for Month field. + + Any field may contain a list of values separated by commas, (e.g. 1,3,7) or a range of values (two integers separated by a hyphen, e.g. 1-5). + + After an asterisk (*) or a range of values, you can use character / to specify that values are repeated over and over with a certain interval between + them. For example, you can write "0-23/2" in Hour field to specify that some action should be performed every two hours (it will have the same effect + as "0,2,4,6,8,10,12,14,16,18,20,22"); value "*/4" in Minute field means that the action should be performed every 4 minutes, "1-30/3" means the same + as "1,4,7,10,13,16,19,22,25,28". + + + + + In testing and may change. Do not use until officially introduced into library. + + + Occurs when a property value changes. + + + Gets or sets a Boolean value that indicates whether the trigger is enabled. + + + + Gets or sets the date and time when the trigger is deactivated. The trigger cannot start the task after it is deactivated. + While the maximum value for this property is , the Windows Task Scheduler management + application that is part of the OS will fail if this value is greater than December 31, 9998. + + + + Version 1 (1.1 on all systems prior to Vista) of the native library only allows for the Day, Month and Year values of the structure. + + + Version 2 (1.2 or higher) of the native library only allows for both date and time and all values. + However, the user interface and methods will always show the time translated to local time. The + library makes every attempt to maintain the Kind value. When using the UI elements provided in the TaskSchedulerEditor library, + the "Synchronize across time zones" checkbox will be checked if the Kind is Local or Utc. If the Kind is Unspecified and the + user selects the checkbox, the Kind will be changed to Utc and the time adjusted from the value displayed as the local time. + + + + + + Gets or sets the maximum amount of time that the task launched by this trigger is allowed to run. Not available with Task + Scheduler 1.0. + + Not supported under Task Scheduler 1.0. + + + Gets or sets the identifier for the trigger. Cannot set with Task Scheduler 1.0. + Not supported under Task Scheduler 1.0. + + + + Gets a instance that indicates how often the task is run and how long the repetition pattern is + repeated after the task is started. + + + + Gets or sets the date and time when the trigger is activated. + + + Version 1 (1.1 on all systems prior to Vista) of the native library only allows for values where the is unspecified. If the DateTime value Kind is then it will be used as + is. If the DateTime value Kind is then it will be converted to the local time and then used. + + + Version 2 (1.2 or higher) of the native library only allows for all values. However, the user + interface and methods will always show the time translated to local time. The library makes + every attempt to maintain the Kind value. When using the UI elements provided in the TaskSchedulerEditor library, the + "Synchronize across time zones" checkbox will be checked if the Kind is Local or Utc. If the Kind is Unspecified and the user + selects the checkbox, the Kind will be changed to Utc and the time adjusted from the value displayed as the local time. + + + Under Version 2, when converting the string used in the native library for this value (ITrigger.Startboundary) this library will + behave as follows: + + + YYYY-MM-DDTHH:MM:SS format uses DateTimeKind.Unspecified and the time specified. + + + YYYY-MM-DDTHH:MM:SSZ format uses DateTimeKind.Utc and the time specified as the GMT time. + + + YYYY-MM-DDTHH:MM:SS±HH:MM format uses DateTimeKind.Local and the time specified in that time zone. + + + + + + + Gets the type of the trigger. + The of the trigger. + + + Creates the specified trigger. + Type of the trigger to instantiate. + of specified type. + + + Creates a new that is an unbound copy of this instance. + A new that is an unbound copy of this instance. + + + + Compares the current instance with another object of the same type and returns an integer that indicates whether the current + instance precedes, follows, or occurs in the same position in the sort order as the other object. + + An object to compare with this instance. + A value that indicates the relative order of the objects being compared. + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Releases all resources used by this class. + + + Determines whether the specified , is equal to this instance. + The to compare with this instance. + true if the specified is equal to this instance; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Returns a hash code for this instance. + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + Sets the repetition. + + The amount of time between each restart of the task. The maximum time allowed is 31 days, and the minimum time allowed is 1 minute. + + + The duration of how long the pattern is repeated. The minimum time allowed is one minute. If TimeSpan.Zero is specified, + the pattern is repeated indefinitely. + + + if set to true the running instance of the task is stopped at the end of repetition pattern duration. + + + + Returns a string representing this trigger. + String value of trigger. + + + Returns a that represents this trigger in a specific language. + The language of the resulting string. + String value of trigger. + + + Gets the best time span string. + The to display. + Either the full string representation created by TimeSpan2 or the default TimeSpan representation. + + + Assigns the unbound TriggerData structure to the V1 trigger instance. + + + Checks the bind value for any conversion. + The key (property) name. + The value. + + + Gets the unbound value or a default. + Return type. + The property name. + The default value if not found in unbound value list. + The unbound value, if set, or the default value. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + Fluent helper class. Not intended for use. + + + Adds a trigger that executes at logon of all users. + instance. + + + Adds a trigger that executes at logon of a specific user. + The user id. + instance. + + + Adds a trigger that executes at task registration. + instance. + + + Adds a trigger that executes every day or week. + The interval of days or weeks. + instance. + + + Adds a trigger that executes monthly on specific days. + The months of the year in which to run. + instance. + + + Adds a working directory to the . + The directory. + instance. + + + Adds a trigger that executes monthly on certain days of the week. + The days of the week on which to run. + instance. + + + Adds a trigger that executes at system startup. + instance. + + + Adds a trigger that executes once at a specific time. + instance. + + + Adds a trigger that executes when system is idle. + instance. + + + Adds a trigger that executes once at specified state change. + Type of the change. + instance. + + + Adds arguments to the . + The arguments. + instance. + + + Fluent helper class. Not intended for use. + + + Transitions to settings syntax. + + + Assigns the name of the task and registers it. + The name. + A registered instance. + + + Assigns the name of the task and registers it. + The name. + A union of flags. + The user credentials used to register the task. + The password for the userId used to register the task. + A value that defines what logon technique is used to run the registered task. + A registered instance. + + + Fluent helper class. Not intended for use. + + + Specifies that an Every target uses days as the interval. + instance. + + + Specifies that an Every target uses weeks as the interval. + instance. + + + Fluent helper class. Not intended for use. + + + Updates a monthly trigger to specify in which weeks of the month it will run. + The week. + instance. + + + Updates a monthly trigger to specify the months of the year in which it will run. + The month of the year. + instance. + + + Fluent helper class. Not intended for use. + + + Updates a monthly trigger to specify the days of the month on which it will run. + The days. + instance. + + + Fluent helper class. Not intended for use. + + + Indicates that the task will be started even if the computer is running on battery power. + instance. + + + + Indicates that the task will be started even if the task is triggered to run in a Remote Applications Integrated Locally + (RAIL) session. + + instance. + + + Sets the task data to a string. + instance. + + + Sets the amount of time that the Task Scheduler will wait before deleting the task after it expires. + instance. + + + Indicates that the task cannot be started with the Run command or the Context menu. + instance. + + + Indicates that the task may not be terminated by using TerminateProcess. + instance. + + + Sets the amount of time that is allowed to complete the task. + instance. + + + Sets the policy that defines how the Task Scheduler handles multiple instances of the task. + instance. + + + Indicates that the task will not be stopped if the computer switches to battery power. + instance. + + + Indicates that the Task Scheduler will run the task only if the computer is in an idle condition. + instance. + + + Indicates that the Task Scheduler will run the task only when a network is available. + instance. + + + Sets the priority level of the task. + instance. + + + Sets a value that specifies how long the Task Scheduler will attempt to restart the task. + instance. + + + Indicates that the Task Scheduler can start the task at any time after its scheduled time has passed. + instance. + + + Indicates that the Task Scheduler will wake the computer when it is time to run the task. + instance. + + + Fluent helper class. Not intended for use. + + + Specifies a date on which a trigger will no longer run. + The year. + The month. + The day. + instance. + + + Specifies a date and time on which a trigger will no longer run. + The year. + The month. + The day. + The hour. + The min. + The sec. + instance. + + + Specifies a date and time on which a trigger will no longer run. + A string representing a DateTime and parsable via . + instance. + + + Specifies a date and time on which a trigger will no longer run. + The DateTime value. + instance. + + + Determines whether this trigger is disabled. + instance. + + + Specifies a repetition interval for the trigger. + The interval span. + instance. + + + Specifies a repetition interval for the trigger. + The interval span string. Must be parsable by . + instance. + + + Specifies the maximum amount of time to repeat the execution of a trigger. + The duration span. + instance. + + + Specifies the maximum amount of time to repeat the execution of a trigger. + The duration span string. Must be parsable by . + instance. + + + Specifies a date on which a trigger will start. + The year. + The month. + The day. + instance. + + + Specifies a date and time on which a trigger will start. + The year. + The month. + The day. + The hour. + The min. + The sec. + instance. + + + Specifies a date and time on which a trigger will start. + A string representing a DateTime and parsable via . + instance. + + + Specifies a date and time on which a trigger will start. + The DateTime value. + instance. + + + Fluent helper class. Not intended for use. + + + Updates a weekly trigger to specify the days of the week on which it will run. + The days of the week. + instance. + + + Fluent helper class. Not intended for use. + + + Values for days of the week (Monday, Tuesday, etc.) + + + Sunday + + + Monday + + + Tuesday + + + Wednesday + + + Thursday + + + Friday + + + Saturday + + + All days + + + Values for months of the year (January, February, etc.) + + + January + + + February + + + March + + + April + + + May + + + June + + + July + + + August + + + September + + + October + + + November + + + December + + + All months + + + Defines the type of triggers that can be used by tasks. + + + Triggers the task when a specific event occurs. Version 1.2 only. + + + Triggers the task at a specific time of day. + + + Triggers the task on a daily schedule. + + + Triggers the task on a weekly schedule. + + + Triggers the task on a monthly schedule. + + + Triggers the task on a monthly day-of-week schedule. + + + Triggers the task when the computer goes into an idle state. + + + Triggers the task when the task is registered. Version 1.2 only. + + + Triggers the task when the computer boots. + + + Triggers the task when a specific user logs on. + + + Triggers the task when a specific user session state changes. Version 1.2 only. + + + Triggers the custom trigger. Version 1.3 only. + + + Values for week of month (first, second, ..., last) + + + First week of the month + + + Second week of the month + + + Third week of the month + + + Fourth week of the month + + + Last week of the month + + + Every week of the month + + + Interface that categorizes the trigger as a calendar trigger. + + + Interface for triggers that support a delay. + + + Gets or sets a value that indicates the amount of time before the task is started. + The delay duration. + + + Interface for triggers that support a user identifier. + + + Gets or sets the user for the . + + + Represents a trigger that starts a task when the system is booted. + + A BootTrigger will fire when the system starts. It can only be delayed. All triggers that support a delay implement the + ITriggerDelay interface. + + + + + + + + + Creates an unbound instance of a . + + + Gets or sets a value that indicates the amount of time between when the system is booted and when the task is started. + Not supported under Task Scheduler 1.0. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a custom trigger. This class is based on undocumented features and may change. This type of trigger is only + available for reading custom triggers. It cannot be used to create custom triggers. + + + + Gets a value that indicates the amount of time between the trigger events and when the task is started. + This value cannot be set. + + + Gets the name of the custom trigger type. + The name of the XML element representing this custom trigger. + + + Gets the properties from the XML definition if possible. + + + Clones this instance. + This method will always throw an exception. + CustomTrigger cannot be cloned due to OS restrictions. + + + Updates custom properties from XML provided by definition. + The XML from the TaskDefinition. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a trigger that starts a task based on a daily schedule. For example, the task starts at a specific time every day, every + other day, every third day, and so on. + + A DailyTrigger will fire at a specified time every day or interval of days. + + + + + + + + Creates an unbound instance of a . + Interval between the days in the schedule. + + + Sets or retrieves the interval between the days in the schedule. + + + Gets or sets a delay time that is randomly added to the start time of the trigger. + Not supported under Task Scheduler 1.0. + + + Gets or sets a value that indicates the amount of time before the task is started. + The delay duration. + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a trigger that starts a task when a system event occurs. Only available for Task Scheduler 2.0 on Windows Vista or + Windows Server 2003 and later. + + The EventTrigger runs when a system event fires. + + + "; + eTrigger.ValueQueries.Add("Name", "Value"); + ]]> + + + + + Creates an unbound instance of a . + + + Initializes an unbound instance of the class and sets a basic event. + The event's log. + The event's source. Can be null. + The event's id. Can be null. + + + Gets or sets a value that indicates the amount of time between when the system is booted and when the task is started. + + + Gets or sets the XPath query string that identifies the event that fires the trigger. + + + + Gets a collection of named XPath queries. Each query in the collection is applied to the last matching event XML returned from + the subscription query specified in the Subscription property. The name of the query can be used as a variable in the message of + a action. + + + + Builds an event log XML query string based on the input parameters. + The event's log. + The event's source. Can be null. + The event's id. Can be null. + XML query string. + log + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets basic event information. + The event's log. + The event's source. Can be null. + The event's id. Can be null. + true if subscription represents a basic event, false if not. + + + + Sets the subscription for a basic event. This will replace the contents of the property and clear all + entries in the property. + + The event's log. + The event's source. Can be null. + The event's id. Can be null. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a trigger that starts a task when the computer goes into an idle state. For information about idle conditions, see Task + Idle Conditions. + + + An IdleTrigger will fire when the system becomes idle. It is generally a good practice to set a limit on how long it can run using + the ExecutionTimeLimit property. + + + + + + + + + Creates an unbound instance of a . + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a trigger that starts a task when a user logs on. When the Task Scheduler service starts, all logged-on users are + enumerated and any tasks registered with logon triggers that match the logged on user are run. Not available on Task Scheduler 1.0. + + + A LogonTrigger will fire after a user logs on. It can only be delayed. Under V2, you can specify which user it applies to. + + + + + + + + + Creates an unbound instance of a . + + + Gets or sets a value that indicates the amount of time between when the system is booted and when the task is started. + Not supported under Task Scheduler 1.0. + + + + Gets or sets The identifier of the user. For example, "MyDomain\MyName" or for a local account, "Administrator". + This property can be in one of the following formats: + • User name or SID: The task is started when the user logs on to the computer. + • NULL: The task is started when any user logs on to the computer. + + + If you want a task to be triggered when any member of a group logs on to the computer rather than when a specific user logs on, + then do not assign a value to the LogonTrigger.UserId property. Instead, create a logon trigger with an empty + LogonTrigger.UserId property and assign a value to the principal for the task using the Principal.GroupId property. + + Not supported under Task Scheduler 1.0. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a trigger that starts a task on a monthly day-of-week schedule. For example, the task starts on every first Thursday, May + through October. + + + + Creates an unbound instance of a . + The days of the week. + The months of the year. + The weeks of the month. + + + Gets or sets the days of the week during which the task runs. + + + Gets or sets the months of the year during which the task runs. + + + Gets or sets a delay time that is randomly added to the start time of the trigger. + Not supported under Task Scheduler 1.0. + + + Gets or sets a Boolean value that indicates that the task runs on the last week of the month. + Not supported under Task Scheduler 1.0. + + + Gets or sets the weeks of the month during which the task runs. + + + Gets or sets a value that indicates the amount of time before the task is started. + The delay duration. + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + Reads the subclass XML for V1 streams. + The reader. + + + Writes the subclass XML for V1 streams. + The writer. + + + + Represents a trigger that starts a job based on a monthly schedule. For example, the task starts on specific days of specific months. + + + + Creates an unbound instance of a . + + The day of the month. This must be a value between 1 and 32. If this value is set to 32, then the value will be set and no days will be added regardless of the month. + + The months of the year. + + + Gets or sets the days of the month during which the task runs. + + + Gets or sets the months of the year during which the task runs. + + + Gets or sets a delay time that is randomly added to the start time of the trigger. + Not supported under Task Scheduler 1.0. + + + Gets or sets a Boolean value that indicates that the task runs on the last day of the month. + Not supported under Task Scheduler 1.0. + + + Gets or sets a value that indicates the amount of time before the task is started. + The delay duration. + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Converts an array of bit indices into a mask with bits turned ON at every index contained in the array. Indices must be from 1 + to 32 and bits are numbered the same. + + An array with an element for each bit of the mask which is ON. + An integer to be interpreted as a mask. + + + Compares two collections. + Item type of collections. + The first collection. + The second collection + true if the collections values are equal; false otherwise. + + + + Convert an integer representing a mask to an array where each element contains the index of a bit that is ON in the mask. Bits + are considered to number from 1 to 32. + + An integer to be interpreted as a mask. + An array with an element for each bit of the mask which is ON. + + + Reads the subclass XML for V1 streams. + The reader. + + + + Represents a trigger that starts a task when the task is registered or updated. Not available on Task Scheduler 1.0. Only + available for Task Scheduler 2.0 on Windows Vista or Windows Server 2003 and later. + + The RegistrationTrigger will fire after the task is registered (saved). It is advisable to put in a delay. + + + + + + + + Creates an unbound instance of a . + + + Gets or sets a value that indicates the amount of time between when the system is booted and when the task is started. + Not supported under Task Scheduler 1.0. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + Defines how often the task is run and how long the repetition pattern is repeated after the task is started. + This can be used directly or by assignment for a . + + + + + + + + Initializes a new instance of the class. + + The amount of time between each restart of the task. The maximum time allowed is 31 days, and the minimum time allowed is 1 minute. + + + The duration of how long the pattern is repeated. The minimum time allowed is one minute. If TimeSpan.Zero is specified, + the pattern is repeated indefinitely. + + + If set to true the running instance of the task is stopped at the end of repetition pattern duration. + + + + Occurs when a property value changes. + + + Gets or sets how long the pattern is repeated. + + The duration that the pattern is repeated. The minimum time allowed is one minute. If TimeSpan.Zero is specified, the + pattern is repeated indefinitely. + + If you specify a repetition duration for a task, you must also specify the repetition interval. + + + Gets or sets the amount of time between each restart of the task. + + The amount of time between each restart of the task. The maximum time allowed is 31 days, and the minimum time allowed is 1 minute. + + If you specify a repetition duration for a task, you must also specify the repetition interval. + + The maximum time allowed is 31 days, and the minimum time allowed is 1 minute. + + + + + Gets or sets a Boolean value that indicates if a running instance of the task is stopped at the end of repetition pattern duration. + + + + Releases all resources used by this class. + + + Determines whether the specified , is equal to this instance. + The to compare with this instance. + true if the specified is equal to this instance; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Returns a hash code for this instance. + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + Determines whether any properties for this have been set. + true if properties have been set; otherwise, false. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + + Triggers tasks for console connect or disconnect, remote connect or disconnect, or workstation lock or unlock notifications. + Only available for Task Scheduler 2.0 on Windows Vista or Windows Server 2003 and later. + + + The SessionStateChangeTrigger will fire after six different system events: connecting or disconnecting locally or remotely, or + locking or unlocking the session. + + + + + + + + + Creates an unbound instance of a . + + + Initializes a new instance of the class. + The state change. + The user identifier. + + + Gets or sets a value that indicates the amount of time between when the system is booted and when the task is started. + + + Gets or sets the kind of Terminal Server session change that would trigger a task launch. + + + + Gets or sets the user for the Terminal Server session. When a session state change is detected for this user, a task is started. + + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + Returns a value indicating if the StateChange property has been set. + StateChange property has been set. + + + Represents a trigger that starts a task at a specific date and time. + A TimeTrigger runs at a specified date and time. + + + + + + + + Creates an unbound instance of a . + + + Creates an unbound instance of a and assigns the execution time. + Date and time for the trigger to fire. + + + Gets or sets a delay time that is randomly added to the start time of the trigger. + Not supported under Task Scheduler 1.0. + + + Gets or sets a value that indicates the amount of time before the task is started. + The delay duration. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + + Represents a trigger that starts a task based on a weekly schedule. For example, the task starts at 8:00 A.M. on a specific day of + the week every week or every other week. + + A WeeklyTrigger runs at a specified time on specified days of the week every week or interval of weeks. + + + + + + + + Creates an unbound instance of a . + The days of the week. + The interval between the weeks in the schedule. + + + Gets or sets the days of the week on which the task runs. + + + Gets or sets a delay time that is randomly added to the start time of the trigger. + Not supported under Task Scheduler 1.0. + + + Gets or sets the interval between the weeks in the schedule. + + + Gets or sets a value that indicates the amount of time before the task is started. + The delay duration. + + + + Copies the properties from another the current instance. This will not copy any properties associated with + any derived triggers except those supporting the interface. + + The source . + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Gets the non-localized trigger string for V2 triggers. + String describing the trigger. + + + Reads the subclass XML for V1 streams. + The reader. + + + Writes the subclass XML for V1 streams. + The writer. + + + Provides the methods that are used to add to, remove from, and get the triggers of a task. + + + Occurs when a collection changes. + + + Occurs when a property value changes. + + + Gets the number of triggers in the collection. + + + Gets or sets a specified trigger from the collection. + The . + The id ( ) of the trigger to be retrieved. + Specialized instance. + + + + Mismatching Id for trigger and lookup. + + + Gets a specified trigger from the collection. + The index of the trigger to be retrieved. + Specialized instance. + + + Add an unbound to the task. + A type derived from . + derivative to add to the task. + Bound trigger. + unboundTrigger is null. + + + Add a new trigger to the collections of triggers for the task. + The type of trigger to create. + A instance of the specified type. + + + Adds a collection of unbound triggers to the end of the . + + The triggers to be added to the end of the . The collection itself cannot be null and + cannot contain null elements. + + is null. + + + Clears all triggers from the task. + + + Determines whether the contains a specific value. + The object to locate in the . + true if is found in the ; otherwise, false. + + + Determines whether the specified trigger type is contained in this collection. + Type of the trigger. + true if the specified trigger type is contained in this collection; otherwise, false. + + + + Copies the elements of the to an , starting at a particular index. + + + The one-dimensional that is the destination of the elements copied from . The + must have zero-based indexing. + + The zero-based index in at which copying begins. + + + + Copies the elements of the to a array, starting at a particular array index. + + The zero-based index in the source at which copying begins. + + The array that is the destination of the elements copied from . The array must have zero-based indexing. + + The zero-based index in array at which copying begins. + The number of elements to copy. + is null. + is less than 0. + + The number of elements in the source is greater than the available space from to the end of the destination . + + + + Releases all resources used by this class. + + + + Searches for an that matches the conditions defined by the specified predicate, and returns the first + occurrence within the entire collection. + + + The delegate that defines the conditions of the to search for. + + + The first that matches the conditions defined by the specified predicate, if found; otherwise, null. + + + + + Searches for an that matches the conditions defined by the specified predicate, and returns the zero-based + index of the first occurrence within the collection that starts at the specified index and contains the specified number of elements. + + The zero-based starting index of the search. + The number of elements in the collection to search. + The delegate that defines the conditions of the element to search for. + + The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, –1. + + + + + Searches for an that matches the conditions defined by the specified predicate, and returns the zero-based + index of the first occurrence within the collection. + + The delegate that defines the conditions of the element to search for. + + The zero-based index of the first occurrence of an element that matches the conditions defined by match, if found; otherwise, –1. + + + + Gets the collection enumerator for this collection. + The for this collection. + + + Determines the index of a specific item in the . + The object to locate in the . + The index of if found in the list; otherwise, -1. + + + Determines the index of a specific item in the . + The id ( ) of the trigger to be retrieved. + The index of if found in the list; otherwise, -1. + + + Inserts an trigger at the specified index. + The zero-based index at which trigger should be inserted. + The trigger to insert into the list. + + + Removes the first occurrence of a specific object from the . + The object to remove from the . + + true if was successfully removed from the ; otherwise, false. This method + also returns false if is not found in the original . + + + + Removes the trigger at a specified index. + Index of trigger to remove. + Index out of range. + + + Copies the elements of the to a new array. + An array containing copies of the elements of the . + + + Returns a that represents the triggers in this collection. + A that represents the triggers in this collection. + + + Called when a property has changed to notify any attached elements. + Name of the property. + + + Releases all resources used by this class. + + + Represents a system account. + + + Initializes a new instance of the class. + + Name of the user. This can be in the format DOMAIN\username or username@domain.com or username or + null (for current user). + + + + Initializes a new instance of the class. + The . + + + Gets the current user. + The current user. + + + Gets the identity. + The identity. + + + Gets a value indicating whether this instance is in an administrator role. + true if this instance is an admin; otherwise, false. + + + Gets a value indicating whether this instance is the interactive user. + true if this instance is the current user; otherwise, false. + + + Gets a value indicating whether this instance is a service account. + true if this instance is a service account; otherwise, false. + + + Gets a value indicating whether this instance is the SYSTEM account. + true if this instance is the SYSTEM account; otherwise, false. + + + Gets the SID string. + The SID string. + + + Gets the NT name (DOMAIN\username). + The name of the user. + + + Create a instance from a SID string. + The SID string. + A instance. + + + Performs application-defined tasks associated with freeing, releasing, or resetting unmanaged resources. + + + Determines whether the specified , is equal to this instance. + The to compare with this instance. + true if the specified is equal to this instance; otherwise, false. + + + Indicates whether the current object is equal to another object of the same type. + An object to compare with this object. + true if the current object is equal to the parameter; otherwise, false. + + + Returns a hash code for this instance. + A hash code for this instance, suitable for use in hashing algorithms and data structures like a hash table. + + + + Options for a task, used for the Flags property of a Task. Uses the + "Flags" attribute, so these values are combined with |. + Some flags are documented as Windows 95 only, but they have a + user interface in Windows XP so that may not be true. + + + + + The interactive flag is set if the task is intended to be displayed to the user. + If the flag is not set, no user interface associated with the task is presented + to the user when the task is executed. + + + + + The task will be deleted when there are no more scheduled run times. + + + + + The task is disabled. This is useful to temporarily prevent a task from running + at the scheduled time(s). + + + + + The task begins only if the computer is not in use at the scheduled start time. Windows 95 only. + + + + + The task terminates if the computer makes an idle to non-idle transition while the task is running. + The computer is not considered idle until the IdleWait triggers' time elapses with no user input. + Windows 95 only. For information regarding idle triggers, see . + + + + + The task does not start if its target computer is running on battery power. Windows 95 only. + + + + + The task ends, and the associated application quits if the task's target computer switches + to battery power. Windows 95 only. + + + + + The task runs only if the system is docked. Windows 95 only. + + + + + The work item created will be hidden. + + + + + The task runs only if there is currently a valid Internet connection. + This feature is currently not implemented. + + + + + The task starts again if the computer makes a non-idle to idle transition before all the + task's task_triggers elapse. (Use this flag in conjunction with KillOnIdleEnd.) Windows 95 only. + + + + + The task runs only if the SYSTEM account is available. + + + + + The task runs only if the user specified in SetAccountInformation is logged on interactively. + This flag has no effect on work items set to run in the local account. + + + + + Status values returned for a task. Some values have been determined to occur although + they do no appear in the Task Scheduler system documentation. + + + + The task is ready to run at its next scheduled time. + + + The task is currently running. + + + One or more of the properties that are needed to run this task on a schedule have not been set. + + + The task has not yet run. + + + The task will not run at the scheduled times because it has been disabled. + + + There are no more runs scheduled for this task. + + + The last run of the task was terminated by the user. + + + Either the task has no triggers or the existing triggers are disabled or not set. + + + Event triggers don't have set run times. + + + Valid types of triggers + + + Trigger is set to run the task a single time. + + + Trigger is set to run the task on a daily interval. + + + Trigger is set to run the work item on specific days of a specific week of a specific month. + + + Trigger is set to run the task on a specific day(s) of the month. + + + Trigger is set to run the task on specific days, weeks, and months. + + + Trigger is set to run the task if the system remains idle for the amount of time specified by the idle wait time of the task. + + + Trigger is set to run the task at system startup. + + + Trigger is set to run the task when a user logs on. + + + + Represents a wildcard running on the + engine. + + + + + Initializes a wildcard with the given search pattern and options. + + The wildcard pattern to match. + A combination of one or more . + + + + Converts a wildcard to a regular expression. + + The wildcard pattern to convert. + A regular expression equivalent of the given wildcard. + + + + The GlobalLock function locks a global memory object and returns a pointer to the first byte of the object's memory block. + GlobalLock function increments the lock count by one. + Needed for the clipboard functions when getting the data from IDataObject + + + + + + + The GlobalUnlock function decrements the lock count associated with a memory object. + + + + + + + Defines the errors returned by the status member of the DS_NAME_RESULT_ITEM structure. These are potential errors that may be encountered while a name is converted by the DsCrackNames function. + + + + The conversion was successful. + + + Generic processing error occurred. + + + The name cannot be found or the caller does not have permission to access the name. + + + The input name is mapped to more than one output name or the desired format did not have a single, unique value for the object found. + + + The input name was found, but the associated output format cannot be found. This can occur if the object does not have all the required attributes. + + + Unable to resolve entire name, but was able to determine in which domain object resides. The caller is expected to retry the call at a domain controller for the specified domain. The entire name cannot be resolved, but the domain that the object resides in could be determined. The pDomain member of the DS_NAME_RESULT_ITEM contains valid data when this error is specified. + + + A syntactical mapping cannot be performed on the client without transmitting over the network. + + + The name is from an external trusted forest. + + + + Used to define how the name syntax will be cracked. These flags are used by the DsCrackNames function. + + + + Indicate that there are no associated flags. + + + Perform a syntactical mapping at the client without transferring over the network. The only syntactic mapping supported is from DS_FQDN_1779_NAME to DS_CANONICAL_NAME or DS_CANONICAL_NAME_EX. + + + Force a trip to the DC for evaluation, even if this could be locally cracked syntactically. + + + The call fails if the domain controller is not a global catalog server. + + + Enable cross forest trust referral. + + + + Provides formats to use for input and output names for the DsCrackNames function. + + + + Indicates the name is using an unknown name type. This format can impact performance because it forces the server to attempt to match all possible formats. Only use this value if the input format is unknown. + + + Indicates that the fully qualified distinguished name is used. For example: "CN = someone, OU = Users, DC = Engineering, DC = Fabrikam, DC = Com" + + + Indicates a Windows NT 4.0 account name. For example: "Engineering\someone" The domain-only version includes two trailing backslashes (\\). + + + Indicates a user-friendly display name, for example, Jeff Smith. The display name is not necessarily the same as relative distinguished name (RDN). + + + Indicates a GUID string that the IIDFromString function returns. For example: "{4fa050f0-f561-11cf-bdd9-00aa003a77b6}" + + + Indicates a complete canonical name. For example: "engineering.fabrikam.com/software/someone" The domain-only version includes a trailing forward slash (/). + + + Indicates that it is using the user principal name (UPN). For example: "someone@engineering.fabrikam.com" + + + This element is the same as DS_CANONICAL_NAME except that the rightmost forward slash (/) is replaced with a newline character (\n), even in a domain-only case. For example: "engineering.fabrikam.com/software\nsomeone" + + + Indicates it is using a generalized service principal name. For example: "www/www.fabrikam.com@fabrikam.com" + + + Indicates a Security Identifier (SID) for the object. This can be either the current SID or a SID from the object SID history. The SID string can use either the standard string representation of a SID, or one of the string constants defined in Sddl.h. For more information about converting a binary SID into a SID string, see SID Strings. The following is an example of a SID string: "S-1-5-21-397955417-626881126-188441444-501" + + + + Class that provides methods against a AD domain service. + + + + + + Initializes a new instance of the class. + + Name of the domain controller. + Name of the DNS domain. + + + + + Converts a directory service object name from any format to the UPN. + + The name to convert. + The corresponding UPN. + Unable to resolve user name. + + + + Converts an array of directory service object names from one format to another. Name conversion enables client applications to map between the multiple names used to identify various directory service objects. + + The names to convert. + Values used to determine how the name syntax will be cracked. + Format of the input names. + Desired format for the output names. + An array of DS_NAME_RESULT_ITEM structures. Each element of this array represents a single converted name. + + + + Impersonation of a user. Allows to execute code under another + user context. + Please note that the account that instantiates the Impersonator class + needs to have the 'Act as part of operating system' privilege set. + + + + + Constructor. Starts the impersonation with the given credentials. + Please note that the account that instantiates the Impersonator class + needs to have the 'Act as part of operating system' privilege set. + + The name of the user to act as. + The domain name of the user to act as. + The password of the user to act as. + + + + Indicates that the value of the marked element could be null sometimes, + so the check for null is necessary before its usage. + + + [CanBeNull] object Test() => null; + + void UseTest() { + var p = Test(); + var s = p.ToString(); // Warning: Possible 'System.NullReferenceException' + } + + + + + Indicates that the value of the marked element could never be null. + + + [NotNull] object Foo() { + return null; // Warning: Possible 'null' assignment + } + + + + + Can be appplied to symbols of types derived from IEnumerable as well as to symbols of Task + and Lazy classes to indicate that the value of a collection item, of the Task.Result property + or of the Lazy.Value property can never be null. + + + + + Can be appplied to symbols of types derived from IEnumerable as well as to symbols of Task + and Lazy classes to indicate that the value of a collection item, of the Task.Result property + or of the Lazy.Value property can be null. + + + + + Indicates that the marked method builds string by format pattern and (optional) arguments. + Parameter, which contains format string, should be given in constructor. The format string + should be in -like form. + + + [StringFormatMethod("message")] + void ShowError(string message, params object[] args) { /* do something */ } + + void Foo() { + ShowError("Failed: {0}"); // Warning: Non-existing argument in format string + } + + + + + Specifies which parameter of an annotated method should be treated as format-string + + + + + For a parameter that is expected to be one of the limited set of values. + Specify fields of which type should be used as values for this parameter. + + + + + Indicates that the function argument should be string literal and match one + of the parameters of the caller function. For example, ReSharper annotates + the parameter of . + + + void Foo(string param) { + if (param == null) + throw new ArgumentNullException("par"); // Warning: Cannot resolve symbol + } + + + + + Indicates that the method is contained in a type that implements + System.ComponentModel.INotifyPropertyChanged interface and this method + is used to notify that some property value changed. + + + The method should be non-static and conform to one of the supported signatures: + + NotifyChanged(string) + NotifyChanged(params string[]) + NotifyChanged{T}(Expression{Func{T}}) + NotifyChanged{T,U}(Expression{Func{T,U}}) + SetProperty{T}(ref T, T, string) + + + + public class Foo : INotifyPropertyChanged { + public event PropertyChangedEventHandler PropertyChanged; + + [NotifyPropertyChangedInvocator] + protected virtual void NotifyChanged(string propertyName) { ... } + + string _name; + + public string Name { + get { return _name; } + set { _name = value; NotifyChanged("LastName"); /* Warning */ } + } + } + + Examples of generated notifications: + + NotifyChanged("Property") + NotifyChanged(() => Property) + NotifyChanged((VM x) => x.Property) + SetProperty(ref myField, value, "Property") + + + + + + Describes dependency between method input and output. + + +

Function Definition Table syntax:

+ + FDT ::= FDTRow [;FDTRow]* + FDTRow ::= Input => Output | Output <= Input + Input ::= ParameterName: Value [, Input]* + Output ::= [ParameterName: Value]* {halt|stop|void|nothing|Value} + Value ::= true | false | null | notnull | canbenull + + If method has single input parameter, it's name could be omitted.
+ Using halt (or void/nothing, which is the same) for method output + means that the methos doesn't return normally (throws or terminates the process).
+ Value canbenull is only applicable for output parameters.
+ You can use multiple [ContractAnnotation] for each FDT row, or use single attribute + with rows separated by semicolon. There is no notion of order rows, all rows are checked + for applicability and applied per each program state tracked by R# analysis.
+
+ + + [ContractAnnotation("=> halt")] + public void TerminationMethod() + + + [ContractAnnotation("halt <= condition: false")] + public void Assert(bool condition, string text) // regular assertion method + + + [ContractAnnotation("s:null => true")] + public bool IsNullOrEmpty(string s) // string.IsNullOrEmpty() + + + // A method that returns null if the parameter is null, + // and not null if the parameter is not null + [ContractAnnotation("null => null; notnull => notnull")] + public object Transform(object data) + + + [ContractAnnotation("=> true, result: notnull; => false, result: null")] + public bool TryParse(string s, out Person result) + + +
+ + + Indicates that marked element should be localized or not. + + + [LocalizationRequiredAttribute(true)] + class Foo { + string str = "my string"; // Warning: Localizable string + } + + + + + Indicates that the value of the marked type (or its derivatives) + cannot be compared using '==' or '!=' operators and Equals() + should be used instead. However, using '==' or '!=' for comparison + with null is always permitted. + + + [CannotApplyEqualityOperator] + class NoEquality { } + + class UsesNoEquality { + void Test() { + var ca1 = new NoEquality(); + var ca2 = new NoEquality(); + if (ca1 != null) { // OK + bool condition = ca1 == ca2; // Warning + } + } + } + + + + + When applied to a target attribute, specifies a requirement for any type marked + with the target attribute to implement or inherit specific type or types. + + + [BaseTypeRequired(typeof(IComponent)] // Specify requirement + class ComponentAttribute : Attribute { } + + [Component] // ComponentAttribute requires implementing IComponent interface + class MyComponent : IComponent { } + + + + + Indicates that the marked symbol is used implicitly (e.g. via reflection, in external library), + so this symbol will not be marked as unused (as well as by other usage inspections). + + + + + Should be used on attributes and causes ReSharper to not mark symbols marked with such attributes + as unused (as well as by other usage inspections) + + + + Only entity marked with attribute considered used. + + + Indicates implicit assignment to a member. + + + + Indicates implicit instantiation of a type with fixed constructor signature. + That means any unused constructor parameters won't be reported as such. + + + + Indicates implicit instantiation of a type. + + + + Specify what is considered used implicitly when marked + with or . + + + + Members of entity marked with attribute are considered used. + + + Entity marked with attribute and all its members considered used. + + + + This attribute is intended to mark publicly available API + which should not be removed and so is treated as used. + + + + + Tells code analysis engine if the parameter is completely handled when the invoked method is on stack. + If the parameter is a delegate, indicates that delegate is executed while the method is executed. + If the parameter is an enumerable, indicates that it is enumerated while the method is executed. + + + + + Indicates that a method does not make any observable state changes. + The same as System.Diagnostics.Contracts.PureAttribute. + + + [Pure] int Multiply(int x, int y) => x * y; + + void M() { + Multiply(123, 42); // Waring: Return value of pure method is not used + } + + + + + Indicates that the return value of method invocation must be used. + + + + + Indicates the type member or parameter of some type, that should be used instead of all other ways + to get the value that type. This annotation is useful when you have some "context" value evaluated + and stored somewhere, meaning that all other ways to get this value must be consolidated with existing one. + + + class Foo { + [ProvidesContext] IBarService _barService = ...; + + void ProcessNode(INode node) { + DoSomething(node, node.GetGlobalServices().Bar); + // ^ Warning: use value of '_barService' field + } + } + + + + + Indicates that a parameter is a path to a file or a folder within a web project. + Path can be relative or absolute, starting from web root (~). + + + + + An extension method marked with this attribute is processed by ReSharper code completion + as a 'Source Template'. When extension method is completed over some expression, it's source code + is automatically expanded like a template at call site. + + + Template method body can contain valid source code and/or special comments starting with '$'. + Text inside these comments is added as source code when the template is applied. Template parameters + can be used either as additional method parameters or as identifiers wrapped in two '$' signs. + Use the attribute to specify macros for parameters. + + + In this example, the 'forEach' method is a source template available over all values + of enumerable types, producing ordinary C# 'foreach' statement and placing caret inside block: + + [SourceTemplate] + public static void forEach<T>(this IEnumerable<T> xs) { + foreach (var x in xs) { + //$ $END$ + } + } + + + + + + Allows specifying a macro for a parameter of a source template. + + + You can apply the attribute on the whole method or on any of its additional parameters. The macro expression + is defined in the property. When applied on a method, the target + template parameter is defined in the property. To apply the macro silently + for the parameter, set the property value = -1. + + + Applying the attribute on a source template method: + + [SourceTemplate, Macro(Target = "item", Expression = "suggestVariableName()")] + public static void forEach<T>(this IEnumerable<T> collection) { + foreach (var item in collection) { + //$ $END$ + } + } + + Applying the attribute on a template method parameter: + + [SourceTemplate] + public static void something(this Entity x, [Macro(Expression = "guid()", Editable = -1)] string newguid) { + /*$ var $x$Id = "$newguid$" + x.ToString(); + x.DoSomething($x$Id); */ + } + + + + + + Allows specifying a macro that will be executed for a source template + parameter when the template is expanded. + + + + + Allows specifying which occurrence of the target parameter becomes editable when the template is deployed. + + + If the target parameter is used several times in the template, only one occurrence becomes editable; + other occurrences are changed synchronously. To specify the zero-based index of the editable occurrence, + use values >= 0. To make the parameter non-editable when the template is expanded, use -1. + > + + + + Identifies the target parameter of a source template if the + is applied on a template method. + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter + is an MVC action. If applied to a method, the MVC action name is calculated + implicitly from the context. Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String). + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC area. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String). + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is + an MVC controller. If applied to a method, the MVC controller name is calculated + implicitly from the context. Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.ChildActionExtensions.RenderAction(HtmlHelper, String, String). + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC Master. Use this attribute + for custom wrappers similar to System.Web.Mvc.Controller.View(String, String). + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC model type. Use this attribute + for custom wrappers similar to System.Web.Mvc.Controller.View(String, Object). + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter is an MVC + partial view. If applied to a method, the MVC partial view name is calculated implicitly + from the context. Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.RenderPartialExtensions.RenderPartial(HtmlHelper, String). + + + + + ASP.NET MVC attribute. Allows disabling inspections for MVC views within a class or a method. + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC display template. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.DisplayExtensions.DisplayForModel(HtmlHelper, String). + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC editor template. + Use this attribute for custom wrappers similar to + System.Web.Mvc.Html.EditorExtensions.EditorForModel(HtmlHelper, String). + + + + + ASP.NET MVC attribute. Indicates that a parameter is an MVC template. + Use this attribute for custom wrappers similar to + System.ComponentModel.DataAnnotations.UIHintAttribute(System.String). + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter + is an MVC view component. If applied to a method, the MVC view name is calculated implicitly + from the context. Use this attribute for custom wrappers similar to + System.Web.Mvc.Controller.View(Object). + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter + is an MVC view component name. + + + + + ASP.NET MVC attribute. If applied to a parameter, indicates that the parameter + is an MVC view component view. If applied to a method, the MVC view component view name is default. + + + + + ASP.NET MVC attribute. When applied to a parameter of an attribute, + indicates that this parameter is an MVC action name. + + + [ActionName("Foo")] + public ActionResult Login(string returnUrl) { + ViewBag.ReturnUrl = Url.Action("Foo"); // OK + return RedirectToAction("Bar"); // Error: Cannot resolve action + } + + + + + Razor attribute. Indicates that a parameter or a method is a Razor section. + Use this attribute for custom wrappers similar to + System.Web.WebPages.WebPageBase.RenderSection(String). + + + + + Indicates how method, constructor invocation or property access + over collection type affects content of the collection. + + + + Method does not use or modify content of the collection. + + + Method only reads content of the collection but does not modify it. + + + Method can change content of the collection but does not add new elements. + + + Method can add new elements to the collection. + + + + Indicates that the marked method is assertion method, i.e. it halts control flow if + one of the conditions is satisfied. To set the condition, mark one of the parameters with + attribute. + + + + + Indicates the condition parameter of the assertion method. The method itself should be + marked by attribute. The mandatory argument of + the attribute is the assertion type. + + + + + Specifies assertion type. If the assertion method argument satisfies the condition, + then the execution continues. Otherwise, execution is assumed to be halted. + + + + Marked parameter should be evaluated to true. + + + Marked parameter should be evaluated to false. + + + Marked parameter should be evaluated to null value. + + + Marked parameter should be evaluated to not null value. + + + + Indicates that the marked method unconditionally terminates control flow execution. + For example, it could unconditionally throw exception. + + + + + Indicates that method is pure LINQ method, with postponed enumeration (like Enumerable.Select, + .Where). This annotation allows inference of [InstantHandle] annotation for parameters + of delegate type by analyzing LINQ method chains. + + + + + Indicates that IEnumerable, passed as parameter, is not enumerated. + + + + + Indicates that parameter is regular expression pattern. + + + + + Prevents the Member Reordering feature from tossing members of the marked class. + + + The attribute must be mentioned in your member reordering patterns + + + + + XAML attribute. Indicates the type that has ItemsSource property and should be treated + as ItemsControl-derived type, to enable inner items DataContext type resolve. + + + + + XAML attribute. Indicates the property of some BindingBase-derived type, that + is used to bind some item of ItemsControl-derived type. This annotation will + enable the DataContext type resolve for XAML bindings for such properties. + + + Property should have the tree ancestor of the ItemsControl type or + marked with the attribute. + + + + Extensions for classes in the System.Security.AccessControl namespace. + + + Canonicalizes the specified Access Control List. + The Access Control List. + + + Sort ACEs according to canonical form for this . + The object security whose DiscretionaryAcl will be made canonical. + + + Returns an array of byte values that represents the information contained in this object. + The object. + The byte array into which the contents of the is marshaled. + + + + Converts the string representation of the name or numeric value of one or more enumerated constants to an equivalent enumerated object or returns the value of . If is undefined, it returns the first declared item in the enumerated type. + + The enumeration type to which to convert . + The string representation of the enumeration name or underlying value to convert. + true to ignore case; false to consider case. + The default value. + An object of type whose value is represented by value. + + + + Converts an that points to a C-style array into a CLI array. + + Type of native structure used by the C-style array. + Output type for the CLI array. must be able to convert to . + The pointing to the native array. + The number of items in the native array. + An array of type containing the converted elements of the native array. + + + + Converts an that points to a C-style array into a CLI array. + + Type of native structure used by the C-style array. + The pointing to the native array. + The number of items in the native array. + An array of type containing the elements of the native array. + + + Extensions related to System.Reflection + + + Loads a type from a named assembly. + Name of the type. + The name or path of the file that contains the manifest of the assembly. + The reference, or null if type or assembly not found. + + + Tries the retrieve a reference from an assembly. + Name of the type. + The assembly reference name from which to load the type. + The reference, if found. + true if the type was found in the assembly; otherwise, false. + + + Tries the retrieve a reference from an assembly. + Name of the type. + The assembly from which to load the type. + The reference, if found. + true if the type was found in the assembly; otherwise, false. + + + Invokes a named method on a created instance of a type with parameters. + The expected type of the method's return value. + The type to be instantiated and then used to invoke the method. This method assumes the type has a default public constructor. + Name of the method. + The arguments to provide to the method invocation. + The value returned from the method. + + + Invokes a named method on a created instance of a type with parameters. + The expected type of the method's return value. + The type to be instantiated and then used to invoke the method. + The arguments to supply to the constructor. + Name of the method. + The arguments to provide to the method invocation. + The value returned from the method. + + + Invokes a named method on an object with parameters and no return value. + The object on which to invoke the method. + Name of the method. + The arguments to provide to the method invocation. + + + Invokes a named method on an object with parameters and no return value. + The expected type of the method's return value. + The object on which to invoke the method. + Name of the method. + The types of the . + The arguments to provide to the method invocation. + The value returned from the method. + + + Gets a named property value from an object. + The expected type of the property to be returned. + The object from which to retrieve the property. + Name of the property. + The default value to return in the instance that the property is not found. + The property value, if found, or the if not. + + + Sets a named property on an object. + The type of the property to be set. + The object on which to set the property. + Name of the property. + The property value to set on the object. + + + diff --git a/Compiled/Pingerino.exe b/Compiled/Pingerino.exe new file mode 100644 index 0000000000000000000000000000000000000000..352b7f3ba678b3ade61b2f8dfdd62a48af80cff6 GIT binary patch literal 117248 zcmd?Sd0>^r^*=n%bMJlbl7-yt34z=Y0+%hasvsyy*n%uE31D!+OLBo*l04zLH!Mb! zfJ<>}sY}&rD^hEzwzZ2@zHMD?-*@fcV%Kym~KMX%vb)T~A z$*R^(sdTKz&^H>1u2_4byIar1)+b{|Z+9%!9b2%nCDx^PBx`eWB4bU~O$&usruf7& z$KE?+wf09bMr0{dg}6`=VyVQ|--3J$`CD-%=_s#CxsekZCG-;m694H(73W
~Wl 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 z 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 literal 0 HcmV?d00001 diff --git a/Compiled/Pingerino.exe.config b/Compiled/Pingerino.exe.config new file mode 100644 index 0000000..36184d8 --- /dev/null +++ b/Compiled/Pingerino.exe.config @@ -0,0 +1,30 @@ + + + + +
+ + + + + + + + + 0, 0 + + + + + + + + + True + + + 8.8.8.8 + + + + \ No newline at end of file diff --git a/FormPinger.Designer.cs b/FormPinger.Designer.cs new file mode 100644 index 0000000..144d1e7 --- /dev/null +++ b/FormPinger.Designer.cs @@ -0,0 +1,844 @@ +namespace Pingerino +{ + partial class FormPinger + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.components = new System.ComponentModel.Container(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle6 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle7 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle8 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle4 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle5 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle9 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle10 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle14 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle15 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle16 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle11 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle12 = new System.Windows.Forms.DataGridViewCellStyle(); + System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle13 = new System.Windows.Forms.DataGridViewCellStyle(); + System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormPinger)); + this.textBoxInterval = new System.Windows.Forms.TextBox(); + this.COPYRIGHT = new System.Windows.Forms.TextBox(); + this.textBoxPacketLoss = new System.Windows.Forms.TextBox(); + this.textBoxJitter = new System.Windows.Forms.TextBox(); + this.labelPacketLoss = new System.Windows.Forms.Label(); + this.labelJitter = new System.Windows.Forms.Label(); + this.ipAddress = new IPAddressControlLib.IPAddressControl(); + this.label1 = new System.Windows.Forms.Label(); + this.label2 = new System.Windows.Forms.Label(); + this.panel1 = new System.Windows.Forms.Panel(); + this.label4 = new System.Windows.Forms.Label(); + this.ButtonExit = new System.Windows.Forms.Button(); + this.ButtonMinimize = new System.Windows.Forms.Button(); + this.label3 = new System.Windows.Forms.Label(); + this.ButtonNetworkAdapters = new System.Windows.Forms.Button(); + this.buttonCleanTemp = new System.Windows.Forms.Button(); + this.tableLayoutPanel2 = new System.Windows.Forms.TableLayoutPanel(); + this.ButtonMenu = new System.Windows.Forms.Button(); + this.ButtonCleanNetwork = new System.Windows.Forms.Button(); + this.TextBoxMaxLoss = new System.Windows.Forms.TextBox(); + this.TextBoxMaxJitter = new System.Windows.Forms.TextBox(); + this.TextBoxAvgJitter = new System.Windows.Forms.TextBox(); + this.TextBoxAvgLoss = new System.Windows.Forms.TextBox(); + this.TextBoxMinLoss = new System.Windows.Forms.TextBox(); + this.TextBoxMinJitter = new System.Windows.Forms.TextBox(); + this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components); + this.tableLayoutPanel3 = new System.Windows.Forms.TableLayoutPanel(); + this.dataGridView1 = new System.Windows.Forms.DataGridView(); + this.Time = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.Status = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.RTT = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.tableLayoutPanel5 = new System.Windows.Forms.TableLayoutPanel(); + this.ButtonClearAll = new System.Windows.Forms.Button(); + this.dataGridView2 = new System.Windows.Forms.DataGridView(); + this.MinPing = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.AvgPing = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.MaxPing = new System.Windows.Forms.DataGridViewTextBoxColumn(); + this.panel1.SuspendLayout(); + this.tableLayoutPanel2.SuspendLayout(); + this.tableLayoutPanel3.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).BeginInit(); + this.tableLayoutPanel5.SuspendLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).BeginInit(); + this.SuspendLayout(); + // + // textBoxInterval + // + this.textBoxInterval.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.textBoxInterval.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.textBoxInterval.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBoxInterval.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBoxInterval.ForeColor = System.Drawing.Color.Gold; + this.textBoxInterval.Location = new System.Drawing.Point(132, 48); + this.textBoxInterval.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.textBoxInterval.MaxLength = 4; + this.textBoxInterval.Name = "textBoxInterval"; + this.textBoxInterval.Size = new System.Drawing.Size(178, 16); + this.textBoxInterval.TabIndex = 2; + this.textBoxInterval.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.textBoxInterval.TextChanged += new System.EventHandler(this.TextBoxInterval_TextChanged); + this.textBoxInterval.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBoxInterval_KeyDown); + // + // COPYRIGHT + // + this.COPYRIGHT.Anchor = System.Windows.Forms.AnchorStyles.None; + this.COPYRIGHT.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.COPYRIGHT.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.COPYRIGHT.Cursor = System.Windows.Forms.Cursors.Default; + this.COPYRIGHT.Enabled = false; + this.COPYRIGHT.Font = new System.Drawing.Font("Segoe UI", 8F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.COPYRIGHT.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(120)))), ((int)(((byte)(120)))), ((int)(((byte)(130))))); + this.COPYRIGHT.Location = new System.Drawing.Point(533, 530); + this.COPYRIGHT.Margin = new System.Windows.Forms.Padding(0); + this.COPYRIGHT.Name = "COPYRIGHT"; + this.COPYRIGHT.Size = new System.Drawing.Size(180, 19); + this.COPYRIGHT.TabIndex = 31; + this.COPYRIGHT.Text = "© By Silicon Squire"; + this.COPYRIGHT.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.COPYRIGHT.TextChanged += new System.EventHandler(this.COPYRIGHT_TextChanged); + // + // textBoxPacketLoss + // + this.textBoxPacketLoss.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.textBoxPacketLoss.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.textBoxPacketLoss.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBoxPacketLoss.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBoxPacketLoss.ForeColor = System.Drawing.Color.Gold; + this.textBoxPacketLoss.Location = new System.Drawing.Point(109, 9); + this.textBoxPacketLoss.Name = "textBoxPacketLoss"; + this.textBoxPacketLoss.ReadOnly = true; + this.textBoxPacketLoss.Size = new System.Drawing.Size(66, 16); + this.textBoxPacketLoss.TabIndex = 33; + this.textBoxPacketLoss.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // textBoxJitter + // + this.textBoxJitter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.textBoxJitter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.textBoxJitter.BorderStyle = System.Windows.Forms.BorderStyle.None; + this.textBoxJitter.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.textBoxJitter.ForeColor = System.Drawing.Color.Gold; + this.textBoxJitter.Location = new System.Drawing.Point(109, 42); + this.textBoxJitter.Name = "textBoxJitter"; + this.textBoxJitter.ReadOnly = true; + this.textBoxJitter.Size = new System.Drawing.Size(66, 16); + this.textBoxJitter.TabIndex = 34; + this.textBoxJitter.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.textBoxJitter.TextChanged += new System.EventHandler(this.TextBoxJitter_TextChanged); + // + // labelPacketLoss + // + this.labelPacketLoss.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.labelPacketLoss.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelPacketLoss.ForeColor = System.Drawing.Color.Gold; + this.labelPacketLoss.Location = new System.Drawing.Point(4, 8); + this.labelPacketLoss.Name = "labelPacketLoss"; + this.labelPacketLoss.Size = new System.Drawing.Size(98, 18); + this.labelPacketLoss.TabIndex = 35; + this.labelPacketLoss.Text = "PacketLoss:"; + this.labelPacketLoss.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.labelPacketLoss.Click += new System.EventHandler(this.Label1_Click); + // + // labelJitter + // + this.labelJitter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.labelJitter.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.labelJitter.ForeColor = System.Drawing.Color.Gold; + this.labelJitter.Location = new System.Drawing.Point(4, 41); + this.labelJitter.Name = "labelJitter"; + this.labelJitter.Size = new System.Drawing.Size(98, 18); + this.labelJitter.TabIndex = 36; + this.labelJitter.Text = "Jitter:"; + this.labelJitter.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.labelJitter.Click += new System.EventHandler(this.LabelJitter_Click); + // + // ipAddress + // + this.ipAddress.AllowInternalTab = false; + this.ipAddress.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.ipAddress.AutoHeight = true; + this.ipAddress.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(35)))), ((int)(((byte)(35)))), ((int)(((byte)(45))))); + this.ipAddress.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.ipAddress.Cursor = System.Windows.Forms.Cursors.IBeam; + this.ipAddress.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ipAddress.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(220)))), ((int)(((byte)(220)))), ((int)(((byte)(220))))); + this.ipAddress.Location = new System.Drawing.Point(131, 8); + this.ipAddress.MinimumSize = new System.Drawing.Size(117, 22); + this.ipAddress.Name = "ipAddress"; + this.ipAddress.ReadOnly = false; + this.ipAddress.Size = new System.Drawing.Size(180, 22); + this.ipAddress.TabIndex = 37; + this.ipAddress.Text = "8.8.8.8"; + this.ipAddress.Click += new System.EventHandler(this.IpAddress_Click); + this.ipAddress.KeyDown += new System.Windows.Forms.KeyEventHandler(this.TextBoxIpAddress_KeyDown); + // + // label1 + // + this.label1.AutoSize = true; + this.label1.Dock = System.Windows.Forms.DockStyle.Fill; + this.label1.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(190))))); + this.label1.Location = new System.Drawing.Point(4, 1); + this.label1.Name = "label1"; + this.label1.Size = new System.Drawing.Size(120, 36); + this.label1.TabIndex = 38; + this.label1.Text = "🌐 IP Address"; + this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // label2 + // + this.label2.AutoSize = true; + this.label2.Dock = System.Windows.Forms.DockStyle.Fill; + this.label2.Font = new System.Drawing.Font("Segoe UI", 10F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.label2.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(180)))), ((int)(((byte)(180)))), ((int)(((byte)(190))))); + this.label2.Location = new System.Drawing.Point(4, 38); + this.label2.Name = "label2"; + this.label2.Size = new System.Drawing.Size(120, 36); + this.label2.TabIndex = 39; + this.label2.Text = "⏱️ Interval (ms)"; + this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.label2.Click += new System.EventHandler(this.Label2_Click); + // + // panel1 + // + this.panel1.BackColor = System.Drawing.Color.Gold; + this.panel1.Controls.Add(this.label4); + this.panel1.Controls.Add(this.ButtonExit); + this.panel1.Controls.Add(this.ButtonMinimize); + this.panel1.Controls.Add(this.label3); + this.panel1.Dock = System.Windows.Forms.DockStyle.Top; + this.panel1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; + this.panel1.Location = new System.Drawing.Point(0, 0); + this.panel1.Name = "panel1"; + this.panel1.Size = new System.Drawing.Size(715, 27); + this.panel1.TabIndex = 40; + this.panel1.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Panel1_MouseDown); + // + // label4 + // + this.label4.AutoSize = true; + this.label4.BackColor = System.Drawing.Color.Gold; + this.label4.Location = new System.Drawing.Point(128, 2); + this.label4.Name = "label4"; + this.label4.Size = new System.Drawing.Size(100, 21); + this.label4.TabIndex = 64; + this.label4.Text = "Loading..."; + this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + // + // ButtonExit + // + this.ButtonExit.BackgroundImage = global::Pingerino.Properties.Resources.Untitled; + this.ButtonExit.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ButtonExit.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ButtonExit.Location = new System.Drawing.Point(657, 1); + this.ButtonExit.Name = "ButtonExit"; + this.ButtonExit.Size = new System.Drawing.Size(25, 25); + this.ButtonExit.TabIndex = 33; + this.ButtonExit.UseVisualStyleBackColor = true; + this.ButtonExit.Click += new System.EventHandler(this.ButtonExit_Click); + // + // ButtonMinimize + // + this.ButtonMinimize.BackgroundImage = global::Pingerino.Properties.Resources.Untitlemd; + this.ButtonMinimize.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch; + this.ButtonMinimize.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ButtonMinimize.Location = new System.Drawing.Point(629, 1); + this.ButtonMinimize.Name = "ButtonMinimize"; + this.ButtonMinimize.Size = new System.Drawing.Size(25, 25); + this.ButtonMinimize.TabIndex = 32; + this.ButtonMinimize.UseVisualStyleBackColor = true; + this.ButtonMinimize.Click += new System.EventHandler(this.ButtonMinimize_Click); + // + // label3 + // + this.label3.Anchor = System.Windows.Forms.AnchorStyles.None; + this.label3.AutoSize = true; + this.label3.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.label3.Location = new System.Drawing.Point(15, 2); + this.label3.Name = "label3"; + this.label3.Size = new System.Drawing.Size(91, 21); + this.label3.TabIndex = 31; + this.label3.Text = "Pingerino"; + this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; + this.label3.MouseDown += new System.Windows.Forms.MouseEventHandler(this.Label3_MouseDown); + // + // ButtonNetworkAdapters + // + this.ButtonNetworkAdapters.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.ButtonNetworkAdapters.AutoSize = true; + this.ButtonNetworkAdapters.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.ButtonNetworkAdapters.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonNetworkAdapters.FlatAppearance.BorderSize = 0; + this.ButtonNetworkAdapters.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonNetworkAdapters.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonNetworkAdapters.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonNetworkAdapters.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ButtonNetworkAdapters.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ButtonNetworkAdapters.ForeColor = System.Drawing.Color.Gold; + this.ButtonNetworkAdapters.Location = new System.Drawing.Point(4, 5); + this.ButtonNetworkAdapters.Name = "ButtonNetworkAdapters"; + this.ButtonNetworkAdapters.Size = new System.Drawing.Size(148, 28); + this.ButtonNetworkAdapters.TabIndex = 41; + this.ButtonNetworkAdapters.Text = "Network Adapters"; + this.ButtonNetworkAdapters.UseVisualStyleBackColor = false; + this.ButtonNetworkAdapters.Click += new System.EventHandler(this.ButtonNetworkAdapters_Click); + // + // buttonCleanTemp + // + this.buttonCleanTemp.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.buttonCleanTemp.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.buttonCleanTemp.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.buttonCleanTemp.FlatAppearance.BorderSize = 0; + this.buttonCleanTemp.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.buttonCleanTemp.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.buttonCleanTemp.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.buttonCleanTemp.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.buttonCleanTemp.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.buttonCleanTemp.ForeColor = System.Drawing.Color.Gold; + this.buttonCleanTemp.Location = new System.Drawing.Point(159, 5); + this.buttonCleanTemp.Name = "buttonCleanTemp"; + this.buttonCleanTemp.Size = new System.Drawing.Size(148, 27); + this.buttonCleanTemp.TabIndex = 43; + this.buttonCleanTemp.Text = "Kill N Clean"; + this.buttonCleanTemp.UseVisualStyleBackColor = false; + this.buttonCleanTemp.Click += new System.EventHandler(this.ButtonCleanTemp_Click); + // + // tableLayoutPanel2 + // + this.tableLayoutPanel2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.tableLayoutPanel2.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single; + this.tableLayoutPanel2.ColumnCount = 2; + this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel2.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle()); + this.tableLayoutPanel2.Controls.Add(this.ipAddress, 1, 0); + this.tableLayoutPanel2.Controls.Add(this.label1, 0, 0); + this.tableLayoutPanel2.Controls.Add(this.textBoxInterval, 1, 1); + this.tableLayoutPanel2.Controls.Add(this.label2, 0, 1); + this.tableLayoutPanel2.Location = new System.Drawing.Point(12, 31); + this.tableLayoutPanel2.Name = "tableLayoutPanel2"; + this.tableLayoutPanel2.RowCount = 2; + this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel2.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel2.Size = new System.Drawing.Size(315, 80); + this.tableLayoutPanel2.TabIndex = 45; + // + // ButtonMenu + // + this.ButtonMenu.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.ButtonMenu.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.ButtonMenu.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonMenu.FlatAppearance.BorderSize = 0; + this.ButtonMenu.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonMenu.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonMenu.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonMenu.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ButtonMenu.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ButtonMenu.ForeColor = System.Drawing.Color.Gold; + this.ButtonMenu.Location = new System.Drawing.Point(159, 42); + this.ButtonMenu.Name = "ButtonMenu"; + this.ButtonMenu.Size = new System.Drawing.Size(148, 27); + this.ButtonMenu.TabIndex = 43; + this.ButtonMenu.Text = "Stuff"; + this.ButtonMenu.UseVisualStyleBackColor = false; + this.ButtonMenu.Click += new System.EventHandler(this.ButtonMenu_Click); + // + // ButtonCleanNetwork + // + this.ButtonCleanNetwork.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.ButtonCleanNetwork.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink; + this.ButtonCleanNetwork.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonCleanNetwork.FlatAppearance.BorderSize = 0; + this.ButtonCleanNetwork.FlatAppearance.CheckedBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonCleanNetwork.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonCleanNetwork.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonCleanNetwork.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ButtonCleanNetwork.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 10F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ButtonCleanNetwork.ForeColor = System.Drawing.Color.Red; + this.ButtonCleanNetwork.Location = new System.Drawing.Point(4, 42); + this.ButtonCleanNetwork.Name = "ButtonCleanNetwork"; + this.ButtonCleanNetwork.Size = new System.Drawing.Size(148, 27); + this.ButtonCleanNetwork.TabIndex = 42; + this.ButtonCleanNetwork.Text = "Reset Network"; + this.ButtonCleanNetwork.UseVisualStyleBackColor = false; + this.ButtonCleanNetwork.Click += new System.EventHandler(this.ButtonCleanNetwork_Click); + // + // TextBoxMaxLoss + // + this.TextBoxMaxLoss.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.TextBoxMaxLoss.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.TextBoxMaxLoss.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.TextBoxMaxLoss.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBoxMaxLoss.ForeColor = System.Drawing.Color.Gold; + this.TextBoxMaxLoss.Location = new System.Drawing.Point(312, 9); + this.TextBoxMaxLoss.Name = "TextBoxMaxLoss"; + this.TextBoxMaxLoss.ReadOnly = true; + this.TextBoxMaxLoss.Size = new System.Drawing.Size(62, 22); + this.TextBoxMaxLoss.TabIndex = 52; + this.TextBoxMaxLoss.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // TextBoxMaxJitter + // + this.TextBoxMaxJitter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.TextBoxMaxJitter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.TextBoxMaxJitter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.TextBoxMaxJitter.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBoxMaxJitter.ForeColor = System.Drawing.Color.Gold; + this.TextBoxMaxJitter.Location = new System.Drawing.Point(312, 42); + this.TextBoxMaxJitter.Name = "TextBoxMaxJitter"; + this.TextBoxMaxJitter.ReadOnly = true; + this.TextBoxMaxJitter.Size = new System.Drawing.Size(62, 22); + this.TextBoxMaxJitter.TabIndex = 52; + this.TextBoxMaxJitter.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // TextBoxAvgJitter + // + this.TextBoxAvgJitter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.TextBoxAvgJitter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.TextBoxAvgJitter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.TextBoxAvgJitter.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBoxAvgJitter.ForeColor = System.Drawing.Color.Gold; + this.TextBoxAvgJitter.Location = new System.Drawing.Point(247, 42); + this.TextBoxAvgJitter.Name = "TextBoxAvgJitter"; + this.TextBoxAvgJitter.ReadOnly = true; + this.TextBoxAvgJitter.Size = new System.Drawing.Size(58, 22); + this.TextBoxAvgJitter.TabIndex = 51; + this.TextBoxAvgJitter.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // TextBoxAvgLoss + // + this.TextBoxAvgLoss.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.TextBoxAvgLoss.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.TextBoxAvgLoss.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.TextBoxAvgLoss.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBoxAvgLoss.ForeColor = System.Drawing.Color.Gold; + this.TextBoxAvgLoss.Location = new System.Drawing.Point(247, 9); + this.TextBoxAvgLoss.Name = "TextBoxAvgLoss"; + this.TextBoxAvgLoss.ReadOnly = true; + this.TextBoxAvgLoss.Size = new System.Drawing.Size(58, 22); + this.TextBoxAvgLoss.TabIndex = 51; + this.TextBoxAvgLoss.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // TextBoxMinLoss + // + this.TextBoxMinLoss.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.TextBoxMinLoss.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.TextBoxMinLoss.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.TextBoxMinLoss.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBoxMinLoss.ForeColor = System.Drawing.Color.Gold; + this.TextBoxMinLoss.Location = new System.Drawing.Point(182, 9); + this.TextBoxMinLoss.Name = "TextBoxMinLoss"; + this.TextBoxMinLoss.ReadOnly = true; + this.TextBoxMinLoss.Size = new System.Drawing.Size(58, 22); + this.TextBoxMinLoss.TabIndex = 50; + this.TextBoxMinLoss.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + // + // TextBoxMinJitter + // + this.TextBoxMinJitter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Left | System.Windows.Forms.AnchorStyles.Right))); + this.TextBoxMinJitter.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.TextBoxMinJitter.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle; + this.TextBoxMinJitter.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.TextBoxMinJitter.ForeColor = System.Drawing.Color.Gold; + this.TextBoxMinJitter.Location = new System.Drawing.Point(182, 42); + this.TextBoxMinJitter.Name = "TextBoxMinJitter"; + this.TextBoxMinJitter.ReadOnly = true; + this.TextBoxMinJitter.Size = new System.Drawing.Size(58, 22); + this.TextBoxMinJitter.TabIndex = 50; + this.TextBoxMinJitter.TextAlign = System.Windows.Forms.HorizontalAlignment.Center; + this.TextBoxMinJitter.TextChanged += new System.EventHandler(this.TextBoxMinJitter_TextChanged); + // + // contextMenuStrip1 + // + this.contextMenuStrip1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60))))); + this.contextMenuStrip1.Font = new System.Drawing.Font("Times New Roman", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.contextMenuStrip1.Name = "contextMenuStrip1"; + this.contextMenuStrip1.Size = new System.Drawing.Size(61, 4); + // + // tableLayoutPanel3 + // + this.tableLayoutPanel3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.tableLayoutPanel3.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single; + this.tableLayoutPanel3.ColumnCount = 2; + this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel3.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel3.Controls.Add(this.ButtonCleanNetwork, 0, 1); + this.tableLayoutPanel3.Controls.Add(this.ButtonNetworkAdapters, 0, 0); + this.tableLayoutPanel3.Controls.Add(this.ButtonMenu, 1, 1); + this.tableLayoutPanel3.Controls.Add(this.buttonCleanTemp, 1, 0); + this.tableLayoutPanel3.ForeColor = System.Drawing.Color.Gold; + this.tableLayoutPanel3.Location = new System.Drawing.Point(392, 31); + this.tableLayoutPanel3.Name = "tableLayoutPanel3"; + this.tableLayoutPanel3.RowCount = 2; + this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel3.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel3.Size = new System.Drawing.Size(311, 80); + this.tableLayoutPanel3.TabIndex = 58; + // + // dataGridView1 + // + this.dataGridView1.AllowUserToAddRows = false; + this.dataGridView1.AllowUserToDeleteRows = false; + this.dataGridView1.AllowUserToResizeColumns = false; + this.dataGridView1.AllowUserToResizeRows = false; + dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle1.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle1.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle1.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle1.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView1.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1; + this.dataGridView1.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText; + this.dataGridView1.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.dataGridView1.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken; + dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle2.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle2.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle2.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle2.NullValue = null; + dataGridViewCellStyle2.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle2.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView1.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle2; + this.dataGridView1.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView1.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.Time, + this.Status, + this.RTT}); + dataGridViewCellStyle6.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle6.BackColor = System.Drawing.SystemColors.InactiveCaptionText; + dataGridViewCellStyle6.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle6.ForeColor = System.Drawing.SystemColors.ActiveCaption; + dataGridViewCellStyle6.SelectionBackColor = System.Drawing.SystemColors.Highlight; + dataGridViewCellStyle6.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle6.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView1.DefaultCellStyle = dataGridViewCellStyle6; + this.dataGridView1.EnableHeadersVisualStyles = false; + this.dataGridView1.GridColor = System.Drawing.Color.Gold; + this.dataGridView1.Location = new System.Drawing.Point(12, 118); + this.dataGridView1.Name = "dataGridView1"; + this.dataGridView1.ReadOnly = true; + dataGridViewCellStyle7.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle7.BackColor = System.Drawing.SystemColors.ActiveCaptionText; + dataGridViewCellStyle7.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle7.ForeColor = System.Drawing.SystemColors.MenuHighlight; + dataGridViewCellStyle7.SelectionBackColor = System.Drawing.SystemColors.GradientActiveCaption; + dataGridViewCellStyle7.SelectionForeColor = System.Drawing.SystemColors.HighlightText; + dataGridViewCellStyle7.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dataGridView1.RowHeadersDefaultCellStyle = dataGridViewCellStyle7; + this.dataGridView1.RowHeadersVisible = false; + dataGridViewCellStyle8.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle8.BackColor = System.Drawing.Color.Black; + dataGridViewCellStyle8.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle8.ForeColor = System.Drawing.SystemColors.ActiveCaption; + this.dataGridView1.RowsDefaultCellStyle = dataGridViewCellStyle8; + this.dataGridView1.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.dataGridView1.RowTemplate.DefaultCellStyle.BackColor = System.Drawing.Color.Black; + this.dataGridView1.Size = new System.Drawing.Size(691, 330); + this.dataGridView1.TabIndex = 59; + this.dataGridView1.TabStop = false; + // + // Time + // + this.Time.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle3.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle3.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle3.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle3.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle3.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.Time.DefaultCellStyle = dataGridViewCellStyle3; + this.Time.HeaderText = "Time"; + this.Time.Name = "Time"; + this.Time.ReadOnly = true; + this.Time.Width = 120; + // + // Status + // + this.Status.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + dataGridViewCellStyle4.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle4.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle4.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle4.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle4.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle4.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.Status.DefaultCellStyle = dataGridViewCellStyle4; + this.Status.HeaderText = "Status"; + this.Status.Name = "Status"; + this.Status.ReadOnly = true; + this.Status.Width = 468; + // + // RTT + // + this.RTT.AutoSizeMode = System.Windows.Forms.DataGridViewAutoSizeColumnMode.None; + dataGridViewCellStyle5.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle5.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle5.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle5.SelectionForeColor = System.Drawing.Color.Gold; + this.RTT.DefaultCellStyle = dataGridViewCellStyle5; + this.RTT.HeaderText = "RTT"; + this.RTT.Name = "RTT"; + this.RTT.ReadOnly = true; + this.RTT.Width = 70; + // + // tableLayoutPanel5 + // + this.tableLayoutPanel5.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(25)))), ((int)(((byte)(25)))), ((int)(((byte)(35))))); + this.tableLayoutPanel5.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single; + this.tableLayoutPanel5.ColumnCount = 5; + this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 100F)); + this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 72F)); + this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 64F)); + this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 64F)); + this.tableLayoutPanel5.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Absolute, 68F)); + this.tableLayoutPanel5.Controls.Add(this.labelJitter, 0, 1); + this.tableLayoutPanel5.Controls.Add(this.textBoxPacketLoss, 1, 0); + this.tableLayoutPanel5.Controls.Add(this.textBoxJitter, 1, 1); + this.tableLayoutPanel5.Controls.Add(this.TextBoxAvgLoss, 3, 0); + this.tableLayoutPanel5.Controls.Add(this.TextBoxMaxLoss, 4, 0); + this.tableLayoutPanel5.Controls.Add(this.TextBoxMaxJitter, 4, 1); + this.tableLayoutPanel5.Controls.Add(this.TextBoxAvgJitter, 3, 1); + this.tableLayoutPanel5.Controls.Add(this.TextBoxMinJitter, 2, 1); + this.tableLayoutPanel5.Controls.Add(this.TextBoxMinLoss, 2, 0); + this.tableLayoutPanel5.Controls.Add(this.labelPacketLoss, 0, 0); + this.tableLayoutPanel5.Location = new System.Drawing.Point(12, 455); + this.tableLayoutPanel5.Name = "tableLayoutPanel5"; + this.tableLayoutPanel5.RowCount = 2; + this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel5.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F)); + this.tableLayoutPanel5.Size = new System.Drawing.Size(378, 70); + this.tableLayoutPanel5.TabIndex = 61; + // + // ButtonClearAll + // + this.ButtonClearAll.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(60)))), ((int)(((byte)(60)))), ((int)(((byte)(60))))); + this.ButtonClearAll.FlatAppearance.BorderColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonClearAll.FlatAppearance.BorderSize = 0; + this.ButtonClearAll.FlatAppearance.MouseDownBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonClearAll.FlatAppearance.MouseOverBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ButtonClearAll.FlatStyle = System.Windows.Forms.FlatStyle.Flat; + this.ButtonClearAll.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 11F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.World, ((byte)(0))); + this.ButtonClearAll.ForeColor = System.Drawing.Color.Gold; + this.ButtonClearAll.Location = new System.Drawing.Point(395, 458); + this.ButtonClearAll.Name = "ButtonClearAll"; + this.ButtonClearAll.Size = new System.Drawing.Size(88, 24); + this.ButtonClearAll.TabIndex = 64; + this.ButtonClearAll.Text = "CLEAR VALUES"; + this.ButtonClearAll.UseVisualStyleBackColor = false; + this.ButtonClearAll.Click += new System.EventHandler(this.ButtonClearAll_Click); + // + // dataGridView2 + // + this.dataGridView2.AllowUserToAddRows = false; + this.dataGridView2.AllowUserToDeleteRows = false; + this.dataGridView2.AllowUserToResizeColumns = false; + this.dataGridView2.AllowUserToResizeRows = false; + dataGridViewCellStyle9.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle9.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle9.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle9.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle9.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle9.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle9.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView2.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle9; + this.dataGridView2.BackgroundColor = System.Drawing.SystemColors.ActiveCaptionText; + this.dataGridView2.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D; + this.dataGridView2.ColumnHeadersBorderStyle = System.Windows.Forms.DataGridViewHeaderBorderStyle.Sunken; + dataGridViewCellStyle10.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle10.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle10.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle10.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle10.NullValue = null; + dataGridViewCellStyle10.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle10.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle10.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView2.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle10; + this.dataGridView2.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize; + this.dataGridView2.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { + this.MinPing, + this.AvgPing, + this.MaxPing}); + dataGridViewCellStyle14.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle14.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle14.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle14.ForeColor = System.Drawing.SystemColors.ActiveCaption; + dataGridViewCellStyle14.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle14.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle14.WrapMode = System.Windows.Forms.DataGridViewTriState.False; + this.dataGridView2.DefaultCellStyle = dataGridViewCellStyle14; + this.dataGridView2.EnableHeadersVisualStyles = false; + this.dataGridView2.GridColor = System.Drawing.Color.Gold; + this.dataGridView2.Location = new System.Drawing.Point(488, 455); + this.dataGridView2.Name = "dataGridView2"; + this.dataGridView2.ReadOnly = true; + dataGridViewCellStyle15.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle15.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle15.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle15.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle15.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle15.SelectionForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle15.WrapMode = System.Windows.Forms.DataGridViewTriState.True; + this.dataGridView2.RowHeadersDefaultCellStyle = dataGridViewCellStyle15; + this.dataGridView2.RowHeadersVisible = false; + dataGridViewCellStyle16.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + dataGridViewCellStyle16.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle16.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + dataGridViewCellStyle16.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle16.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle16.SelectionForeColor = System.Drawing.Color.Gold; + this.dataGridView2.RowsDefaultCellStyle = dataGridViewCellStyle16; + this.dataGridView2.RowTemplate.DefaultCellStyle.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter; + this.dataGridView2.RowTemplate.DefaultCellStyle.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.dataGridView2.RowTemplate.DefaultCellStyle.ForeColor = System.Drawing.Color.Gold; + this.dataGridView2.RowTemplate.DefaultCellStyle.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.dataGridView2.RowTemplate.DefaultCellStyle.SelectionForeColor = System.Drawing.Color.Gold; + this.dataGridView2.Size = new System.Drawing.Size(215, 54); + this.dataGridView2.TabIndex = 65; + this.dataGridView2.TabStop = false; + // + // MinPing + // + dataGridViewCellStyle11.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle11.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle11.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle11.SelectionForeColor = System.Drawing.Color.Gold; + this.MinPing.DefaultCellStyle = dataGridViewCellStyle11; + this.MinPing.HeaderText = "Min."; + this.MinPing.Name = "MinPing"; + this.MinPing.ReadOnly = true; + this.MinPing.Width = 70; + // + // AvgPing + // + dataGridViewCellStyle12.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle12.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle12.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle12.SelectionForeColor = System.Drawing.Color.Gold; + this.AvgPing.DefaultCellStyle = dataGridViewCellStyle12; + this.AvgPing.HeaderText = "Avg."; + this.AvgPing.Name = "AvgPing"; + this.AvgPing.ReadOnly = true; + this.AvgPing.Width = 70; + // + // MaxPing + // + dataGridViewCellStyle13.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle13.ForeColor = System.Drawing.Color.Gold; + dataGridViewCellStyle13.SelectionBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + dataGridViewCellStyle13.SelectionForeColor = System.Drawing.Color.Gold; + this.MaxPing.DefaultCellStyle = dataGridViewCellStyle13; + this.MaxPing.HeaderText = "Max."; + this.MaxPing.Name = "MaxPing"; + this.MaxPing.ReadOnly = true; + this.MaxPing.Width = 70; + // + // FormPinger + // + this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 21F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(18)))), ((int)(((byte)(17)))), ((int)(((byte)(23))))); + this.ClientSize = new System.Drawing.Size(715, 550); + this.Controls.Add(this.dataGridView2); + this.Controls.Add(this.ButtonClearAll); + this.Controls.Add(this.tableLayoutPanel5); + this.Controls.Add(this.dataGridView1); + this.Controls.Add(this.tableLayoutPanel3); + this.Controls.Add(this.tableLayoutPanel2); + this.Controls.Add(this.panel1); + this.Controls.Add(this.COPYRIGHT); + this.Font = new System.Drawing.Font("Cascadia Mono SemiBold", 12F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); + this.ForeColor = System.Drawing.SystemColors.ActiveCaption; + this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None; + this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); + this.Margin = new System.Windows.Forms.Padding(4, 5, 4, 5); + this.Name = "FormPinger"; + this.Text = " "; + this.Load += new System.EventHandler(this.FormPinger_Load); + this.panel1.ResumeLayout(false); + this.panel1.PerformLayout(); + this.tableLayoutPanel2.ResumeLayout(false); + this.tableLayoutPanel2.PerformLayout(); + this.tableLayoutPanel3.ResumeLayout(false); + this.tableLayoutPanel3.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView1)).EndInit(); + this.tableLayoutPanel5.ResumeLayout(false); + this.tableLayoutPanel5.PerformLayout(); + ((System.ComponentModel.ISupportInitialize)(this.dataGridView2)).EndInit(); + this.ResumeLayout(false); + this.PerformLayout(); + + } + + #endregion + private System.Windows.Forms.TextBox textBoxInterval; + private System.Windows.Forms.TextBox COPYRIGHT; + private System.Windows.Forms.TextBox textBoxPacketLoss; + private System.Windows.Forms.TextBox textBoxJitter; + private System.Windows.Forms.Label labelPacketLoss; + private System.Windows.Forms.Label labelJitter; + private IPAddressControlLib.IPAddressControl ipAddress; + private System.Windows.Forms.Label label1; + private System.Windows.Forms.Label label2; + private System.Windows.Forms.Panel panel1; + private System.Windows.Forms.Label label3; + private System.Windows.Forms.Button ButtonNetworkAdapters; + private System.Windows.Forms.Button buttonCleanTemp; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel2; + private System.Windows.Forms.TextBox TextBoxMaxLoss; + private System.Windows.Forms.TextBox TextBoxMaxJitter; + private System.Windows.Forms.TextBox TextBoxAvgJitter; + private System.Windows.Forms.TextBox TextBoxAvgLoss; + private System.Windows.Forms.TextBox TextBoxMinLoss; + private System.Windows.Forms.TextBox TextBoxMinJitter; + private System.Windows.Forms.Button ButtonMenu; + private System.Windows.Forms.Button ButtonCleanNetwork; + private System.Windows.Forms.ContextMenuStrip contextMenuStrip1; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel3; + private System.Windows.Forms.DataGridView dataGridView1; + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel5; + private System.Windows.Forms.Button ButtonExit; + private System.Windows.Forms.Button ButtonMinimize; + private System.Windows.Forms.Button ButtonClearAll; + private System.Windows.Forms.DataGridView dataGridView2; + private System.Windows.Forms.DataGridViewTextBoxColumn Time; + private System.Windows.Forms.DataGridViewTextBoxColumn Status; + private System.Windows.Forms.DataGridViewTextBoxColumn RTT; + private System.Windows.Forms.DataGridViewTextBoxColumn MinPing; + private System.Windows.Forms.DataGridViewTextBoxColumn AvgPing; + private System.Windows.Forms.DataGridViewTextBoxColumn MaxPing; + private System.Windows.Forms.Label label4; + + } +} diff --git a/FormPinger.cs b/FormPinger.cs new file mode 100644 index 0000000..dd748a9 --- /dev/null +++ b/FormPinger.cs @@ -0,0 +1,808 @@ +using System; +using System.Drawing; +using System.Linq; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Forms; +using Pingerino.Infrastructure; +using Pingerino.Services.Interfaces; +using Pingerino.Utilities; + +namespace Pingerino +{ + public partial class FormPinger : Form + { + #region Services + private readonly IPingService _pingService; + private readonly INetworkService _networkService; + private readonly IConfigurationService _configService; + private readonly ISystemService _systemService; + private readonly ILoggingService _logger; + #endregion + + #region Fields + private CancellationTokenSource _cancellationTokenSource; + private System.Threading.Timer _publicIpTimer; + private string _currentPublicIp = "Loading..."; + private bool _disposed; + #endregion + + #region Constructor + public FormPinger() + { + InitializeComponent(); + + // Get services from container + _pingService = ServiceContainer.Instance.GetService(); + _networkService = ServiceContainer.Instance.GetService(); + _configService = ServiceContainer.Instance.GetService(); + _systemService = ServiceContainer.Instance.GetService(); + _logger = ServiceContainer.Instance.GetService(); + + InitializeFormAsync(); + } + #endregion + + #region Initialization + private async void InitializeFormAsync() + { + try + { + _logger.LogInformation("Initializing Pingerino application"); + + // Setup UI + SetupUI(); + + // Load configuration + LoadConfiguration(); + + // Setup event handlers + SetupEventHandlers(); + + // Initialize services + await InitializeServicesAsync(); + + _logger.LogInformation("Application initialized successfully"); + } + catch (Exception ex) + { + _logger.LogError("Error during application initialization", ex); + UIHelper.ShowError($"Failed to initialize application: {ex.Message}"); + } + } + + private void SetupUI() + { + // Apply rounded corners + UIHelper.ApplyRoundedCorners(this); + + // Enable form dragging + UIHelper.EnableFormDragging(this, panel1); + + // Enable double buffering + this.DoubleBuffered = true; + + // Initialize context menu + InitializeContextMenu(); + + // Set default values + textBoxInterval.Text = "300"; + ipAddress.Select(); + } + + private void LoadConfiguration() + { + try + { + // Load form position + var savedPosition = _configService.FormPosition; + if (savedPosition != Point.Empty) + { + this.Location = savedPosition; + } + + // Load IP address and interval + ipAddress.Text = _configService.IpAddressValue; + textBoxInterval.Text = _configService.TextBoxIntervalValue; + + _logger.LogInformation("Configuration loaded successfully"); + } + catch (Exception ex) + { + _logger.LogError("Error loading configuration", ex); + } + } + + private void SetupEventHandlers() + { + // Form events + this.Load += FormPinger_Load; + this.FormClosing += FormPinger_FormClosing; + + // Input events + textBoxInterval.KeyDown += TextBoxInterval_KeyDown; + ipAddress.KeyDown += TextBoxIpAddress_KeyDown; + + // Button events are handled by Designer file - no manual registration needed + + // Service events + _pingService.PingCompleted += PingService_PingCompleted; + _pingService.StatisticsUpdated += PingService_StatisticsUpdated; + } + + private async System.Threading.Tasks.Task InitializeServicesAsync() + { + // Start public IP fetching + await StartPublicIpUpdatesAsync(); + + // Start initial ping if auto-ping is enabled + if (_configService.AutoPingEnabled) + { + await StartPingingAsync(); + } + } + #endregion + + #region Event Handlers + private async void FormPinger_Load(object sender, EventArgs e) + { + await UpdateNetworkStatisticsAsync(); + } + + private async void FormPinger_FormClosing(object sender, FormClosingEventArgs e) + { + try + { + // Save configuration + _configService.FormPosition = this.Location; + _configService.IpAddressValue = ipAddress.Text; + _configService.TextBoxIntervalValue = textBoxInterval.Text; + _configService.Save(); + + // Stop services + await _pingService.StopPingingAsync(); + _publicIpTimer?.Dispose(); + _cancellationTokenSource?.Cancel(); + _cancellationTokenSource?.Dispose(); + + _logger.LogInformation("Application closing - configuration saved"); + } + catch (Exception ex) + { + _logger.LogError("Error during application shutdown", ex); + } + } + + private async void TextBoxInterval_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Enter) + { + await HandleIntervalChangeAsync(); + } + } + + private async void TextBoxIpAddress_KeyDown(object sender, KeyEventArgs e) + { + if (e.KeyCode == Keys.Enter) + { + await HandleIpAddressChangeAsync(); + } + } + + private void ButtonExit_Click(object sender, EventArgs e) + { + Application.Exit(); + } + + private void ButtonMinimize_Click(object sender, EventArgs e) + { + WindowState = FormWindowState.Minimized; + } + + private async void ButtonClearAll_Click(object sender, EventArgs e) + { + await ClearAllDataAsync(); + } + + private async void ButtonCleanNetwork_Click(object sender, EventArgs e) + { + await ResetNetworkAsync(); + } + + private async void ButtonCleanTemp_Click(object sender, EventArgs e) + { + await CleanTemporaryFilesAsync(); + } + + private void ButtonNetworkAdapters_Click(object sender, EventArgs e) + { + _systemService.OpenNetworkAdaptersControl(); + } + + private void ButtonMenu_Click(object sender, EventArgs e) + { + contextMenuStrip1.Show(ButtonMenu, 0, ButtonMenu.Height); + } + + // Additional event handlers referenced by Designer + private void COPYRIGHT_TextChanged(object sender, EventArgs e) + { + // Copyright text changed - no action needed + } + + private void TextBoxInterval_TextChanged(object sender, EventArgs e) + { + // Interval text changed - we handle this with KeyDown events instead + } + + private void TextBoxJitter_TextChanged(object sender, EventArgs e) + { + // Jitter display text changed - no action needed (read-only display) + } + + private void Label1_Click(object sender, EventArgs e) + { + // Label click - no action needed + } + + private void LabelJitter_Click(object sender, EventArgs e) + { + // Jitter label click - no action needed + } + + private void IpAddress_Click(object sender, EventArgs e) + { + // IP address control click - no action needed + } + + private void Label2_Click(object sender, EventArgs e) + { + // Label click - no action needed + } + + private void Panel1_MouseDown(object sender, MouseEventArgs e) + { + // Panel mouse down - form dragging is handled by UIHelper.EnableFormDragging + } + + private void Label3_MouseDown(object sender, MouseEventArgs e) + { + // Label mouse down - form dragging is handled by UIHelper.EnableFormDragging + } + + private void TextBoxMinJitter_TextChanged(object sender, EventArgs e) + { + // Min jitter display text changed - no action needed (read-only display) + } + #endregion + + #region Service Event Handlers + private void PingService_PingCompleted(object sender, PingResultEventArgs e) + { + UIHelper.SafeInvoke(this, () => + { + var timestamp = e.Timestamp.ToString("HH:mm:ss.ff"); + var status = e.Result.IsSuccess ? + $"Pinging {e.Result.IpAddress} - Success" : + $"Ping to {e.Result.IpAddress} - Failed: {e.Result.Status}"; + var rtt = e.Result.IsSuccess ? $"{e.Result.RoundTripTime} ms" : ""; + + AddLineToOutput(timestamp, status, rtt); + }); + } + + private void PingService_StatisticsUpdated(object sender, NetworkStatisticsEventArgs e) + { + UIHelper.SafeInvoke(this, () => + { + UpdateStatisticsDisplay(e.Statistics); + }); + } + #endregion + + #region Business Logic Methods + private async System.Threading.Tasks.Task HandleIntervalChangeAsync() + { + try + { + var intervalText = ValidationHelper.SanitizeInput(textBoxInterval.Text); + + if (!ValidationHelper.IsValidPingInterval(intervalText, out int interval)) + { + UIHelper.ShowError(ValidationHelper.GetValidationErrorMessage("Interval", intervalText)); + return; + } + + await ClearAllDataAsync(); + + if (_pingService.IsRunning) + { + await _pingService.StopPingingAsync(); + await _pingService.StartPingingAsync(ipAddress.Text, interval); + } + + _logger.LogInformation($"Ping interval changed to {interval}ms"); + } + catch (Exception ex) + { + _logger.LogError("Error changing ping interval", ex); + UIHelper.ShowError("Failed to change ping interval"); + } + } + + private async System.Threading.Tasks.Task HandleIpAddressChangeAsync() + { + try + { + var address = ValidationHelper.SanitizeInput(ipAddress.Text); + + if (!ValidationHelper.IsValidIpAddressOrHostname(address)) + { + UIHelper.ShowError(ValidationHelper.GetValidationErrorMessage("IP Address", address)); + return; + } + + await ClearAllDataAsync(); + + // Save to configuration + _configService.LastUsedIpAddress = address; + _configService.Save(); + + // Restart pinging if it was running + if (_pingService.IsRunning) + { + var interval = int.Parse(textBoxInterval.Text); + await _pingService.StopPingingAsync(); + await _pingService.StartPingingAsync(address, interval); + } + + _logger.LogInformation($"IP address changed to {address}"); + } + catch (Exception ex) + { + _logger.LogError("Error changing IP address", ex); + UIHelper.ShowError("Failed to change IP address"); + } + } + + private async System.Threading.Tasks.Task StartPingingAsync() + { + try + { + var address = ValidationHelper.SanitizeInput(ipAddress.Text); + var intervalText = ValidationHelper.SanitizeInput(textBoxInterval.Text); + + if (!ValidationHelper.IsValidIpAddressOrHostname(address)) + { + UIHelper.ShowError("Please enter a valid IP address or hostname"); + return; + } + + if (!ValidationHelper.IsValidPingInterval(intervalText, out int interval)) + { + UIHelper.ShowError("Please enter a valid ping interval (100-60000 ms)"); + return; + } + + await _pingService.StartPingingAsync(address, interval); + _logger.LogInformation($"Started pinging {address} with {interval}ms interval"); + } + catch (Exception ex) + { + _logger.LogError("Error starting ping service", ex); + UIHelper.ShowError("Failed to start pinging"); + } + } + + private async System.Threading.Tasks.Task ClearAllDataAsync() + { + try + { + _pingService.ClearStatistics(); + + UIHelper.SafeInvoke(this, () => + { + dataGridView1.Rows.Clear(); + dataGridView2.Rows.Clear(); + + // Reset statistics display + ResetStatisticsDisplay(); + }); + + // Refresh public IP + await FetchPublicIpAsync(); + + _logger.LogInformation("All data cleared"); + } + catch (Exception ex) + { + _logger.LogError("Error clearing data", ex); + } + } + + private async System.Threading.Tasks.Task ResetNetworkAsync() + { + try + { + if (!UIHelper.ShowConfirmation( + "This action will release and renew network settings. Are you sure you want to continue?", + "Confirm Network Reset")) + { + return; + } + + var adapter = await _networkService.GetActiveEthernetAdapterAsync(); + if (adapter == null) + { + UIHelper.ShowError("No active Ethernet adapter found"); + return; + } + + ButtonCleanNetwork.Visible = false; + + var progress = new Progress(value => + { + UIHelper.SafeInvoke(this, () => + { + // Update progress if you have a progress bar + }); + }); + + var success = await _networkService.ResetNetworkAdapterAsync(adapter.Name, progress); + + UIHelper.SafeInvoke(this, () => + { + ButtonCleanNetwork.Visible = true; + + if (success) + { + AddLineToOutput(DateTime.Now.ToString("HH:mm:ss.ff"), "Network reset completed", ""); + } + else + { + UIHelper.ShowError("Network reset failed"); + } + }); + } + catch (Exception ex) + { + _logger.LogError("Error during network reset", ex); + UIHelper.SafeInvoke(this, () => + { + ButtonCleanNetwork.Visible = true; + UIHelper.ShowError("Network reset failed"); + }); + } + } + + private async System.Threading.Tasks.Task CleanTemporaryFilesAsync() + { + try + { + buttonCleanTemp.Visible = false; + + var progress = new Progress(value => + { + UIHelper.SafeInvoke(this, () => + { + // Update progress if you have a progress bar + }); + }); + + var success = await _systemService.CleanTemporaryFilesAsync(progress); + + UIHelper.SafeInvoke(this, () => + { + buttonCleanTemp.Visible = true; + + if (success) + { + UIHelper.ShowInformation("Temporary files cleaned successfully"); + } + else + { + UIHelper.ShowError("Failed to clean temporary files"); + } + }); + } + catch (Exception ex) + { + _logger.LogError("Error cleaning temporary files", ex); + UIHelper.SafeInvoke(this, () => + { + buttonCleanTemp.Visible = true; + UIHelper.ShowError("Failed to clean temporary files"); + }); + } + } + + private async System.Threading.Tasks.Task StartPublicIpUpdatesAsync() + { + await FetchPublicIpAsync(); + + // Update public IP every hour + _publicIpTimer = new System.Threading.Timer(async _ => await FetchPublicIpAsync(), null, + TimeSpan.FromHours(1), TimeSpan.FromHours(1)); + } + + private async System.Threading.Tasks.Task FetchPublicIpAsync() + { + try + { + _cancellationTokenSource?.Cancel(); + _cancellationTokenSource = new CancellationTokenSource(); + + var publicIp = await _networkService.GetPublicIpAddressAsync(_cancellationTokenSource.Token); + _currentPublicIp = publicIp; + + UIHelper.SafeInvoke(this, () => + { + label4.Text = $"Public IP: {publicIp}"; + }); + } + catch (Exception ex) + { + _logger.LogError("Error fetching public IP", ex); + UIHelper.SafeInvoke(this, () => + { + label4.Text = "Error fetching IP"; + }); + + // Retry after delay + await System.Threading.Tasks.Task.Delay(30000); + _ = System.Threading.Tasks.Task.Run(async () => await FetchPublicIpAsync()); + } + } + + private async System.Threading.Tasks.Task UpdateNetworkStatisticsAsync() + { + try + { + var address = ValidationHelper.SanitizeInput(ipAddress.Text); + if (!ValidationHelper.IsValidIpAddressOrHostname(address)) + return; + + // This will trigger the StatisticsUpdated event + await System.Threading.Tasks.Task.Run(async () => + { + var result = await _pingService.PingOnceAsync(address); + // Statistics are automatically calculated and updated via events + }); + } + catch (Exception ex) + { + _logger.LogError("Error updating network statistics", ex); + } + } + #endregion + + #region UI Helper Methods + private void AddLineToOutput(string time, string status, string rtt = "") + { + if (dataGridView1.IsDisposed || !dataGridView1.IsHandleCreated) + return; + + UIHelper.SafeInvoke(this, () => + { + dataGridView1.Rows.Add(new object[] { time, status, rtt }); + + // Auto-scroll to bottom + if (dataGridView1.Rows.Count > 0) + { + dataGridView1.FirstDisplayedScrollingRowIndex = dataGridView1.Rows.Count - 1; + } + }); + } + + private void UpdateStatisticsDisplay(NetworkStatistics stats) + { + try + { + // Update ping statistics + if (dataGridView2.Rows.Count == 0) + { + dataGridView2.Rows.Add(); + } + + var row = dataGridView2.Rows[0]; + row.Cells["MaxPing"].Value = $"{stats.MaxPing} ms"; + row.Cells["MinPing"].Value = $"{stats.MinPing} ms"; + row.Cells["AvgPing"].Value = $"{stats.AveragePing:F0} ms"; + + // Update jitter statistics + TextBoxMaxJitter.Text = $"{stats.MaxJitter:F0} ms"; + TextBoxMinJitter.Text = $"{stats.MinJitter:F0} ms"; + TextBoxAvgJitter.Text = $"{stats.AverageJitter:F0} ms"; + + // Update packet loss statistics + TextBoxMaxLoss.Text = $"{stats.MaxPacketLoss:F0}%"; + TextBoxMinLoss.Text = $"{stats.MinPacketLoss:F0}%"; + TextBoxAvgLoss.Text = $"{stats.AveragePacketLoss:F0}%"; + + // Update current values + textBoxPacketLoss.Text = $"{stats.PacketLoss:F2}%"; + textBoxJitter.Text = $"{stats.Jitter:F2}ms"; + } + catch (Exception ex) + { + _logger.LogError("Error updating statistics display", ex); + } + } + + private void ResetStatisticsDisplay() + { + if (dataGridView2.Rows.Count > 0) + { + dataGridView2.Rows[0].Cells["MaxPing"].Value = "0 ms"; + dataGridView2.Rows[0].Cells["MinPing"].Value = "0 ms"; + dataGridView2.Rows[0].Cells["AvgPing"].Value = "0 ms"; + } + + TextBoxMaxJitter.Text = "0 ms"; + TextBoxMinJitter.Text = "0 ms"; + TextBoxAvgJitter.Text = "0 ms"; + + TextBoxMaxLoss.Text = "0%"; + TextBoxMinLoss.Text = "0%"; + TextBoxAvgLoss.Text = "0%"; + + textBoxPacketLoss.Text = "0%"; + textBoxJitter.Text = "0ms"; + } + #endregion + + #region Context Menu + private void InitializeContextMenu() + { + contextMenuStrip1 = new ContextMenuStrip(); + contextMenuStrip1.Items.Add("[1] Show Network Details"); + contextMenuStrip1.Items.Add("[2] Auto Ping"); + contextMenuStrip1.Items.Add("[3] Run with Windows"); + contextMenuStrip1.Items.Add("[4] Proxy"); + + // Attach event handlers + contextMenuStrip1.Items[0].Click += ShowNetworkDetails_Click; + contextMenuStrip1.Items[1].Click += AutoPing_Click; + contextMenuStrip1.Items[2].Click += RunWithWindows_Click; + contextMenuStrip1.Items[3].Click += Proxy_Click; + + UpdateContextMenuItems(); + } + + private async void ShowNetworkDetails_Click(object sender, EventArgs e) + { + try + { + var adapters = await _networkService.GetNetworkAdaptersAsync(); + var activeAdapters = adapters.Where(a => a.IsActive).ToList(); + + if (!activeAdapters.Any()) + { + UIHelper.ShowInformation("No active network adapters found"); + return; + } + + var details = string.Join("\n\n", activeAdapters.Select(adapter => + $"Description: {adapter.Description}\n" + + $"Physical Address: {adapter.PhysicalAddress}\n" + + $"DHCP Enabled: {(adapter.IsDhcpEnabled ? "Yes" : "No")}\n" + + $"IPv4 Address: {adapter.IpAddress}\n" + + $"IPv4 Subnet Mask: {adapter.SubnetMask}\n" + + $"IPv4 Default Gateway: {adapter.DefaultGateway}\n" + + $"IPv4 DHCP Server: {adapter.DhcpServer}\n" + + $"IPv4 DNS Servers: {string.Join(", ", adapter.DnsServers)}" + )); + + UIHelper.ShowInformation(details, "Network Details"); + } + catch (Exception ex) + { + _logger.LogError("Error showing network details", ex); + UIHelper.ShowError("Failed to retrieve network details"); + } + } + + private async void AutoPing_Click(object sender, EventArgs e) + { + try + { + if (_pingService.IsRunning) + { + await _pingService.StopPingingAsync(); + _configService.AutoPingEnabled = false; + } + else + { + await StartPingingAsync(); + _configService.AutoPingEnabled = true; + } + + _configService.Save(); + UpdateContextMenuItems(); + } + catch (Exception ex) + { + _logger.LogError("Error toggling auto ping", ex); + UIHelper.ShowError("Failed to toggle auto ping"); + } + } + + private async void RunWithWindows_Click(object sender, EventArgs e) + { + try + { + const string taskName = "Pingerino"; + var executablePath = Application.ExecutablePath; + + var taskExists = await _systemService.IsStartupTaskExistsAsync(taskName); + + bool success; + if (taskExists) + { + success = await _systemService.RemoveStartupTaskAsync(taskName); + } + else + { + success = await _systemService.CreateStartupTaskAsync(taskName, executablePath); + } + + if (success) + { + UpdateContextMenuItems(); + } + else + { + UIHelper.ShowError("Failed to update startup task"); + } + } + catch (Exception ex) + { + _logger.LogError("Error managing startup task", ex); + UIHelper.ShowError("Failed to manage startup task"); + } + } + + private async void Proxy_Click(object sender, EventArgs e) + { + try + { + var scriptPath = System.IO.Path.Combine( + System.IO.Path.GetDirectoryName(Application.ExecutablePath), + "runPS1.bat"); + + var success = await _systemService.RunExternalScriptAsync(scriptPath); + if (!success) + { + UIHelper.ShowError("Proxy script not found or failed to execute"); + } + } + catch (Exception ex) + { + _logger.LogError("Error running proxy script", ex); + UIHelper.ShowError("Failed to run proxy script"); + } + } + + private async void UpdateContextMenuItems() + { + try + { + // Update auto ping status + contextMenuStrip1.Items[1].Text = _pingService.IsRunning ? + "[2] Auto Ping ✔" : "[2] Auto Ping"; + + // Update startup task status + var taskExists = await _systemService.IsStartupTaskExistsAsync("Pingerino"); + contextMenuStrip1.Items[2].Text = taskExists ? + "[3] Run with Windows ✔" : "[3] Run with Windows"; + } + catch (Exception ex) + { + _logger.LogError("Error updating context menu items", ex); + } + } + #endregion + + + } +} diff --git a/FormPinger.resx b/FormPinger.resx new file mode 100644 index 0000000..0b8188b --- /dev/null +++ b/FormPinger.resx @@ -0,0 +1,377 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + 17, 17 + + + True + + + True + + + True + + + True + + + True + + + True + + + 39 + + + + + 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 + YII= + + + \ No newline at end of file diff --git a/IPAddressControlLib.dll b/IPAddressControlLib.dll new file mode 100644 index 0000000000000000000000000000000000000000..da17b950ddb779cd1c9f9ad2f425537a9fe346d3 GIT binary patch literal 24576 zcmeHv3wT@Ak^kH)=}MMu#gc8=&Ql=|die>3M?Nw(9L z{eRzn-~Ze1uS9ds%$&!ZIdkUBIrqvNu6h@_h{%oa>#q}?M9QC40{=P~2RktDO947j z^z{6bM%UBxdxjF3$Y|OgOvgqd{jpTa&PMv;k@Q$9l1N25Hg-ow?16YwX{mpqZhF%i zqAtTlj~=gB=k)d*1?CqUKB8@)Sc*D#FVYCUv_<-jI2x?O{zAuY( z;gta3$ygzG;U_|LZBsgv?gvq18%KsG>MDE-KC7URrgS`Mqae#lcjL=#?Zmg>vx;bS z0jjdBSA1ADlRVUXG10GA5ETiPsQMzJutBsbqE)Zye<`_W@nux?Y}L`-fBMeOrFYHU zSG{l9(1R~6IOk~m;1feP{_K}ami@jXG5oKO{G)&5svq>O{q&=E{rOFQc7S?@%Z&8zL2`7{(^faZvFngqxKCuz8U<@k%b?5`+Hw_`csLeU%%+9cb{{l zVOLx8q1OAqyZ);`ykgvS>MO6-97uoT(*L-0+gvjmCi2&nH@m16LPGT5^#JaQXcg!U zku;Fe??5|dv>F7v1|TyNz;BInIVoH>^LmtU*UdG@CEXfDVx_xLRT%axRH)O`vB^|N zg1P2F^yscT$8;T%3<&5^5hR0>&??Jn5HdVvLDQZOQq~L1Z`qK`YOo@h)J=7f84Syt z-4sPxnChgmX7n7?EB4N|Y?!H)Spdw&BJ(fyVieIu$kp|k=0UXRc16zxn#E{m9b&wI zfu;)?MCHvUp=CC^pm}f}G9}^C`chxfF^E@-(#6mEihM^BOa3if=dDxaF#=eUQ@%J{ zQa{7%LwT2t0)AiBwi2HgHC_ZJ?W36~?N_MwV?2C!Rq?YWMOE8MrJEPH8)y;};I6w0 zs^yGA8!R(=K59TmCT&5Ra2-K2T8}G@Fcmbl-zUBPTgk6%^4-H8Ery8T6cd@ z7w4hO*>w?J&Vz&H%YuDfFw=tO{NdvI<(BHtd(2(}l8uE3J5
!wlFmRuw^erC0;zy4Lm%a(+K*RY*zuXD|;D==FIBXvPNL=?8AaH z4_^u=z(Q46x_NY)K$CZQxyPAHerYM4xd#B5%X=F) z%6j)l;Vb<%49hRgSxbIg*XIf^DR<30Z-y%GIu@?7hj|R|1tS8+Y=_~tcY*F;9(#yO zv2D4i3$pwrow8>BicSmIYJ`t#WwP&>1KTg=F;=OSQ>_fK=5PSUe~4$roO!sE^E?w~ zO-<$k^md4sgIQgz5MB#r=0c`J&9GwZ5q>j@ox^WmBH7C^kg$J6BfOLvos}5@>0XT- zv!Oq~gIK(8X)RdC(znB%hDa%Q6^cdMxZTwS6->Lm5PQu+&sL^`i(OODlKGmoh8X~U zd+p>JKsDpC$qdM^8S5r9AhDI{E&T@l7=MY)ffCU#aAieGbdMac< z7Au2j#BXn!%z!MKam8c?1kz1yp3H!dnt|0>*asxljGoC1NU!^V?<}kV{acx>pxIYW zW!qg z^qXT$o!cBEuihP#YfM#duEtdL<``4en`2B>Z;mlVy;@m{t&~-@&97I%k;J8s|M~UT z%?P`^swj-wZ&v9P6w{&2E7QbkogU=%SY_|z3Q1WD- zreKY0N*t8BOW<|knb7GW1QYJM3xE$YuJ+dhK!+3?(&)VypI#X+w+#2K`5ouWtKz%9^S(P3^jEbKa()ojsABrz@av1pQcHvEVm*2!`; zhRtXSXoF9pA4Ez~o4HnI6iKnm-i^d-M$<^_48XH~Z-eEvv&jB5WGY5!$Q2y}L1E?Y zkUP33k9tC$=w6^z+cn<`S+riPrL=;8;oiJ736vOl-S!9j3iMkkPo z-pBw8PQ?{&!XOAP9_3j?j|tIt2oD`v4d9EHhgCsP_Och|2d3c8OKhiH*V z`jv=LtYalkW4^OB=9}7> zg~qHPf*iE=RTUW)Oe+jp#fICQR%biXEfV2O4g@SM>Go}+tonMV@XWtm*sA-IDa%*& zZQmmL;q|P7SNql+K}3gv%tB0rwah16#JN87?|0enM6nXf7cB-_YGGnvI@V&VNC=Cc zEyKJNF~t`x;pC@?W|f@~dtf)gh;^)7h^77#ASs+WaX94yug6R4WO^L22~mS1ia zMEd34`k6Y=cX$h-ewp5KZ@AnC>u?8si(n|eJ76r~@}d=Q(-Q;Y_5#e_z`!fRTMI+X)K7#5bBzus+CIYwX|QyjOA=)+R+a>_gi8QqN` zY#5v|uYWHFC0h>;25$R(JVegi>15vTWR7trr8lCGvk|HKvKg^nF2%sh*+%75+)$r^ zCM>_@wh_}U{8gOCvcPQ4WEm{`187@`V&CQT_dzG~cTVO*PUdbW1HCG7?{PA` z+sOd#5_#3kxyyCScH-BM~ws)*bdbDh38-@<)y zW@=x2_O3<~Vb+J7=&{dz3WIHgn~g(OKcCOtgaA$aj2VT;@h^7eJPq~&xr|$l)X{v) zY&8Y!0aT-5OKdm#X;cP@=O_9ZfI4_HPR+3WSwRbVPwLLxRjn0HImOq7U5E~)t$IT> z!|TlCHKxWR%H~LDIrq1MJ8*&D1wMbw%0p}v1-dgM^ReX~;)yq-;6bkFEu7TYCpak# zw!=}Ff#0l-ehvwA#x8^NScTj%r65skVR5}FJ)|oXrb#WkS zHI$j*Dvl5>SC#z*Zq>z+rq$5wvQGkSfR!me6#YdI8uyveFCkS*XuZxv?8Vhl@6B8f zL8-2X6NWH!y;Z7S;|jAXS7Q&?@Im%5)xtp}ja4p=h^@vME)I#UMz15;E)@JScWp+$ zfZkxp+ninR=|#`mF^zl%F!6QyWj~{nPZiYg5FqW zUjH?uVn{3Q0~=@4LBN&;kc2Z51n;I#6UA{+R5T$3~9d>}Y` z%{EmNw~DOp5{{6i;Hq2~Vus%Hs(oHnbo=%aGwh2>Kr04*kbM>Qp&jU{w8-QD+OoF; z6sZB)S0isqDYM8vg@z|dJ6G*@4LBAR%(yRS5Nv-CN!h(C`Z(7Y9X6h;{eT*5jUMcz zRUuo7T08KIa);!KLicRE2eH3n-o6g3?qM_f4Wx~Wm1wY65e8>9WsW%gi9tI?a=s}` zU~a2fRTr-NgIW*~7z8y{C}du$Nw1T6k=B{I*^q7yBjB+%NNrT&wcCM|Kf2{6Xo*+Z zye96$v`-@+;bqnu(Tw({3Z2`UE4)n!)TbGxIY#MZ#<@90R53oIYh1g;={Et-sw8O6 z(N?yY;kqhpP>QiA*UDnm3eOcEI%?S7WjkzGoVgOyk2?Zo7uZ=WT&ZsslUT{#$g-cr z(0Gnq1V3I_cj;N`hNUi==;4;!_SWew@w)Sf>z=k3DvO-F8MZ-+X`A6H5cvk-5NGtQ zF)Ve7h$?&J0A%G4JgX0$m0NM{6fMXkmRESaSl}A4Y{kPC-jqamZuN!8)Eg4uFDM>MBjSyHxDDBqxdGf_h+*4k*3Y@j6Ig_k7shZ&GFbkJlzl($@JUlWTLMj zvNfL0B<$41OPZSbUqhsQESVik$1hIB$Fk{IvLUi*tS_19UmxG!V-Lqu7xyh+9$VJG z?EIFMtxMz0D^@O;-q~0xn;3~Zy?4hs`jed!32kcY;Qt4Ha`?FU?k~(;#58>T5I(Y& z5)?;hGC&)U#wbH$lt!)x-+h#og0u65xi(~!|+1n97_5A^qd z5};#}|EzH@D9;<;MwuFS7xI_8FLYb9*Ue>GJ^PFh9q-n@&1yVODy`b!0!p%Qrcc>QBvT|0`C|2sK6f!d|6;w zfJ@c}xP^-at{2KcfF-{vz$5)s;I6=Z^cd7?(eDD^3s@AI@x4Hp*3D?1VNvglyFhs} zC>Gr}gUf$H;CE)Umxk%LGy00dR8-biY|-2@?qzKmm)RltG@zdzEW5ePPhS8G(>J8# zk5MK-OM^VRuHdSmMX?~)+9mLO!oawF1Wlz64lB z^UB#iE-7bjpTO$`-Ub+=e<{4Xl`b;FThZE(NuWjsOc{uL}w9K46u=uwSA1lfY_dF~8vf z>}!J6YV0Y&8szPdGWtHSQfkrI3xX|^lT{i03D_J&PS;3(K7)I>lx{$;j~V5FzlFXn zderO%d{W@|1^$!3-v~5Z%q|Pu&fUj^`gy>7Hu)Mj(-x+p?t2WACxZv<|%`qJY2-^F@fIzbYy!<^3R|J zgMNlu4qeH-!XHO3YXA+}?0*2w%Du%wpe3J%=5^ki!^qbV4DS-kT%(q^1CnZjofIq zp`?QyG1u~282B*nPP2>Hk1FgwvqwCx!cLf1!K+>+ZQkVjk!u)l>GWyrmo6LFu*Uw= zm4y{%G)C@yz}~DdktINH73>LL)crQB@8cTlao+;$`AH>z4J<-8`R;W8J$RmT6!svn z8599V;C1jFM$`N&uQ#6!5-3BspkZE&uDD6XBew*#RAo4t>-wf z5sh8y`693}jcxQi4D6kPJ>ly`$#QyBV>ftC0XwZr-X^?fGnAjemTIgL*lg<7SOnM{8rE0?u(|XWjjaSW zkM7dg7VGDjt54Lc973E!}F9KP{+h0#817OQ;){}18qj>IX-Tnr0M+wu)CTS7Vy4Gb#zi= z^Pc`;_w6c``sIiZEYmD=$9gz_C_Yin1 zs7qtt1$F^#(b#`^BgRFvQ)A`6h;a!GYHW$`Ra!-(8e0!+HSO2f0I&|aQDX;CZ!Nu3 zV@G}a@U~k8VlD3deZE=LNpl2KYqOIUX^huqCpBs8S4CsSo9KLvyaG)%0{{!7_ax3|I@}s`h>=^z&6q28vB6%G2;q)R%6G3ZKnSO#=d~pZ8w>?#bu0T z>BbF+!dRAWsu1i6AFtFN+N^os@IP(z&<>6LqyM|WPHOB0@V3w+8haVMEwpf{YSUf( zw6T@eDU1Te2Y@}2!+u~~Nxv6Nt;X$Cu}td8Xtz^Ruv1iB{4Dn49p^I-YoYijcsX*9 z#x4YQHN8t?ysCE4{Tk~5?;85GMD3^O9mUTZJEOD>e2ausChj*dKxIq8l{kDS62l zq&o$hpis#HV~C!~VLvbu6uE%gRGJ^AUcqkiv5y?4L5;DG9Hu?0q=d!jN|FzEmpoebJtOoDjj;w(bVg&WL7QB-Oy-iT!BON4I#9xJJO@pBTM3L$J_emG zF|kiRE!@+9CjD#@H{XJ4=Z(XEl{Wt^2Tl4T@-A{A6f`LC--Kl-Z&IbynkjkJ!vCiH zd>P#v*YF!Dxmen46pbyH{2S4H+Z!%f*xK~Il!S$4Cg*XzXO^2k0-QxZ2i!+z1imEj z6@iAq^df;lfi(i>1D>E-$+rkxDX>lGoq)5jA)h^l7Q}MZgYMjnth_hsxHw<`c(sr$OK1 z+D@m+t^tKx{t+k%*Uyb#l-򴤣uIxC~(raaq9FLtJ1*J0hxNA4f4Gx1+8=M8m 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 a1i%kE@DmD($S-03Cp!55ZT`Qkf&T-DGAZf+ literal 0 HcmV?d00001 diff --git a/Infrastructure/ServiceContainer.cs b/Infrastructure/ServiceContainer.cs new file mode 100644 index 0000000..f847e6b --- /dev/null +++ b/Infrastructure/ServiceContainer.cs @@ -0,0 +1,88 @@ +using System; +using System.Collections.Generic; +using Pingerino.Services; +using Pingerino.Services.Interfaces; + +namespace Pingerino.Infrastructure +{ + public class ServiceContainer : IDisposable + { + private readonly Dictionary _services = new Dictionary(); + private readonly List _disposables = new List(); + private bool _disposed; + + public static ServiceContainer Instance { get; private set; } + + public static void Initialize() + { + Instance?.Dispose(); + Instance = new ServiceContainer(); + Instance.RegisterServices(); + } + + private void RegisterServices() + { + // Register logging service first + var loggingService = new LoggingService(); + RegisterSingleton(loggingService); + + // Register other services + RegisterSingleton(new ConfigurationService(loggingService)); + RegisterSingleton(new PingService(loggingService)); + RegisterSingleton(new NetworkService(loggingService)); + RegisterSingleton(new SystemService(loggingService)); + } + + public void RegisterSingleton(T instance) where T : class + { + _services[typeof(T)] = instance; + + if (instance is IDisposable disposable) + { + _disposables.Add(disposable); + } + } + + public T GetService() where T : class + { + if (_services.TryGetValue(typeof(T), out var service)) + { + return service as T; + } + + throw new InvalidOperationException($"Service of type {typeof(T).Name} is not registered."); + } + + public bool TryGetService(out T service) where T : class + { + service = null; + if (_services.TryGetValue(typeof(T), out var serviceObj)) + { + service = serviceObj as T; + return service != null; + } + return false; + } + + public void Dispose() + { + if (_disposed) return; + + foreach (var disposable in _disposables) + { + try + { + disposable?.Dispose(); + } + catch + { + // Ignore disposal errors + } + } + + _services.Clear(); + _disposables.Clear(); + _disposed = true; + } + } +} diff --git a/NetworkStatistics.cs b/NetworkStatistics.cs new file mode 100644 index 0000000..4c5d2b6 --- /dev/null +++ b/NetworkStatistics.cs @@ -0,0 +1,12 @@ +// This file is now obsolete - NetworkStatistics functionality has been moved to: +// - Services/Interfaces/IPingService.cs (NetworkStatistics class) +// - Services/PingService.cs (implementation) +// +// The new architecture provides: +// - Better separation of concerns +// - Async/await patterns +// - Proper error handling and logging +// - Thread-safe operations +// - Dependency injection support +// +// This file is kept for reference but should not be used in the new architecture. \ No newline at end of file diff --git a/Pingerino.csproj b/Pingerino.csproj new file mode 100644 index 0000000..33fe998 --- /dev/null +++ b/Pingerino.csproj @@ -0,0 +1,151 @@ + + + + + Debug + AnyCPU + {69F90891-89F7-4EDB-8C35-91D372E1F30C} + WinExe + Pingerino + Pingerino + v4.7.2 + 512 + true + true + publish\ + true + Disk + false + Foreground + 7 + Days + false + false + true + 0 + 1.0.0.%2a + false + false + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + xray_drawing_1_origi_fETdd.ico + + + app.manifest + + + + packages\IPAddressControl.1.2.4446.28646\lib\IPAddressControlLib.dll + + + packages\TaskScheduler.2.10.1\lib\net452\Microsoft.Win32.TaskScheduler.dll + + + + + + + + + + + + + + + + + + Form + + + FormPinger.cs + + + + + + + + + + + + + + + + + + + + FormPinger.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + True + + + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + + + + + + + False + Microsoft .NET Framework 4.7.2 %28x86 and x64%29 + true + + + False + .NET Framework 3.5 SP1 + false + + + + \ No newline at end of file diff --git a/Pingerino.sln b/Pingerino.sln new file mode 100644 index 0000000..d1046f9 --- /dev/null +++ b/Pingerino.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 17 +VisualStudioVersion = 17.6.33829.357 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Pingerino", "Pingerino.csproj", "{69F90891-89F7-4EDB-8C35-91D372E1F30C}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {69F90891-89F7-4EDB-8C35-91D372E1F30C}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {69F90891-89F7-4EDB-8C35-91D372E1F30C}.Debug|Any CPU.Build.0 = Debug|Any CPU + {69F90891-89F7-4EDB-8C35-91D372E1F30C}.Release|Any CPU.ActiveCfg = Release|Any CPU + {69F90891-89F7-4EDB-8C35-91D372E1F30C}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {A1640B14-6E09-47C1-AC9C-CBC9D973B6A1} + EndGlobalSection +EndGlobal diff --git a/Program.cs b/Program.cs new file mode 100644 index 0000000..f8f5942 --- /dev/null +++ b/Program.cs @@ -0,0 +1,32 @@ +using System; +using System.Windows.Forms; +using Pingerino.Infrastructure; + +namespace Pingerino +{ + internal static class Program + { + /// + /// The main entry point for the application. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + + // Initialize dependency injection container + ServiceContainer.Initialize(); + + try + { + Application.Run(new FormPinger()); + } + finally + { + // Clean up services on application exit + ServiceContainer.Instance?.Dispose(); + } + } + } +} diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..600f07d --- /dev/null +++ b/Properties/AssemblyInfo.cs @@ -0,0 +1,35 @@ +using System.Reflection; +using System.Runtime.InteropServices; + +// General Information about an assembly is controlled through the following +// set of attributes. Change these attribute values to modify the information +// associated with an assembly. +[assembly: AssemblyTitle("Pingerino")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Pingerino")] +[assembly: AssemblyCopyright("Copyright © 2023")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Setting ComVisible to false makes the types in this assembly not visible +// to COM components. If you need to access a type in this assembly from +// COM, set the ComVisible attribute to true on that type. +[assembly: ComVisible(false)] + +// The following GUID is for the ID of the typelib if this project is exposed to COM +[assembly: Guid("69f90891-89f7-4edb-8c35-91d372e1f30c")] + +// Version information for an assembly consists of the following four values: +// +// Major Version +// Minor Version +// Build Number +// Revision +// +// You can specify all the values or you can default the Build and Revision Numbers +// by using the '*' as shown below: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Properties/IPAddressControlLib.dll b/Properties/IPAddressControlLib.dll new file mode 100644 index 0000000000000000000000000000000000000000..da17b950ddb779cd1c9f9ad2f425537a9fe346d3 GIT binary patch literal 24576 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򴤣uIxC~(raaq9FLtJ1*J0hxNA4f4Gx1+8=M8m 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 a1i%kE@DmD($S-03Cp!55ZT`Qkf&T-DGAZf+ literal 0 HcmV?d00001 diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs new file mode 100644 index 0000000..850514b --- /dev/null +++ b/Properties/Resources.Designer.cs @@ -0,0 +1,83 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Pingerino.Properties { + using System; + + + /// + /// A strongly-typed resource class, for looking up localized strings, etc. + /// + // This class was auto-generated by the StronglyTypedResourceBuilder + // class via a tool like ResGen or Visual Studio. + // To add or remove a member, edit your .ResX file then rerun ResGen + // with the /str option, or rebuild your VS project. + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "17.0.0.0")] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + internal class Resources { + + private static global::System.Resources.ResourceManager resourceMan; + + private static global::System.Globalization.CultureInfo resourceCulture; + + [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] + internal Resources() { + } + + /// + /// Returns the cached ResourceManager instance used by this class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Resources.ResourceManager ResourceManager { + get { + if (object.ReferenceEquals(resourceMan, null)) { + global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("Pingerino.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Overrides the current thread's CurrentUICulture property for all + /// resource lookups using this strongly typed resource class. + /// + [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] + internal static global::System.Globalization.CultureInfo Culture { + get { + return resourceCulture; + } + set { + resourceCulture = value; + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Untitled { + get { + object obj = ResourceManager.GetObject("Untitled", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + + /// + /// Looks up a localized resource of type System.Drawing.Bitmap. + /// + internal static System.Drawing.Bitmap Untitlemd { + get { + object obj = ResourceManager.GetObject("Untitlemd", resourceCulture); + return ((System.Drawing.Bitmap)(obj)); + } + } + } +} diff --git a/Properties/Resources.resx b/Properties/Resources.resx new file mode 100644 index 0000000..90e57b4 --- /dev/null +++ b/Properties/Resources.resx @@ -0,0 +1,127 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + + ..\Resources\Untitled.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + + ..\Resources\Untitlemd.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a + + \ No newline at end of file diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs new file mode 100644 index 0000000..5717f9b --- /dev/null +++ b/Properties/Settings.Designer.cs @@ -0,0 +1,86 @@ +//------------------------------------------------------------------------------ +// +// This code was generated by a tool. +// Runtime Version:4.0.30319.42000 +// +// Changes to this file may cause incorrect behavior and will be lost if +// the code is regenerated. +// +//------------------------------------------------------------------------------ + +namespace Pingerino.Properties { + + + [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] + [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "17.9.0.0")] + internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase { + + private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); + + public static Settings Default { + get { + return defaultInstance; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("0, 0")] + public global::System.Drawing.Point FormPosition { + get { + return ((global::System.Drawing.Point)(this["FormPosition"])); + } + set { + this["FormPosition"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("1000")] + public string TextBoxIntervalValue { + get { + return ((string)(this["TextBoxIntervalValue"])); + } + set { + this["TextBoxIntervalValue"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("8.8.8.8")] + public string IpAddressValue { + get { + return ((string)(this["IpAddressValue"])); + } + set { + this["IpAddressValue"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("True")] + public bool AutoPingEnabled { + get { + return ((bool)(this["AutoPingEnabled"])); + } + set { + this["AutoPingEnabled"] = value; + } + } + + [global::System.Configuration.UserScopedSettingAttribute()] + [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] + [global::System.Configuration.DefaultSettingValueAttribute("8.8.8.8")] + public string LastUsedIpAddress { + get { + return ((string)(this["LastUsedIpAddress"])); + } + set { + this["LastUsedIpAddress"] = value; + } + } + } +} diff --git a/Properties/Settings.settings b/Properties/Settings.settings new file mode 100644 index 0000000..25d2650 --- /dev/null +++ b/Properties/Settings.settings @@ -0,0 +1,21 @@ + + + + + + 0, 0 + + + 1000 + + + 8.8.8.8 + + + True + + + 8.8.8.8 + + + \ No newline at end of file diff --git a/Resources/Untitled.png b/Resources/Untitled.png new file mode 100644 index 0000000000000000000000000000000000000000..c2826af7d5777b64cda080039b0daa0cdfcc16c0 GIT binary patch literal 18259 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 key, T defaultValue = default) + { + try + { + var property = Properties.Settings.Default.GetType().GetProperty(key); + if (property != null) + { + var value = property.GetValue(Properties.Settings.Default); + if (value != null && value is T) + { + return (T)value; + } + } + return defaultValue; + } + catch (Exception ex) + { + _logger.LogError($"Error getting configuration value for key: {key}", ex); + return defaultValue; + } + } + + public void SetValue(string key, T value) + { + try + { + var property = Properties.Settings.Default.GetType().GetProperty(key); + if (property != null && property.CanWrite) + { + property.SetValue(Properties.Settings.Default, value); + } + } + catch (Exception ex) + { + _logger.LogError($"Error setting configuration value for key: {key}", ex); + } + } + + public void Save() + { + try + { + Properties.Settings.Default.Save(); + _logger.LogInformation("Configuration saved successfully"); + } + catch (Exception ex) + { + _logger.LogError("Error saving configuration", ex); + } + } + + public void Load() + { + try + { + Properties.Settings.Default.Reload(); + _logger.LogInformation("Configuration loaded successfully"); + } + catch (Exception ex) + { + _logger.LogError("Error loading configuration", ex); + } + } + + public string LastUsedIpAddress + { + get => GetValue(nameof(Properties.Settings.Default.LastUsedIpAddress), "8.8.8.8"); + set => SetValue(nameof(Properties.Settings.Default.LastUsedIpAddress), value); + } + + public int PingInterval + { + get => GetValue("PingInterval", 300); + set => SetValue("PingInterval", value); + } + + public bool AutoPingEnabled + { + get => GetValue(nameof(Properties.Settings.Default.AutoPingEnabled), false); + set => SetValue(nameof(Properties.Settings.Default.AutoPingEnabled), value); + } + + public Point FormPosition + { + get => GetValue(nameof(Properties.Settings.Default.FormPosition), Point.Empty); + set => SetValue(nameof(Properties.Settings.Default.FormPosition), value); + } + + public string IpAddressValue + { + get => GetValue(nameof(Properties.Settings.Default.IpAddressValue), "8.8.8.8"); + set => SetValue(nameof(Properties.Settings.Default.IpAddressValue), value); + } + + public string TextBoxIntervalValue + { + get => GetValue(nameof(Properties.Settings.Default.TextBoxIntervalValue), "300"); + set => SetValue(nameof(Properties.Settings.Default.TextBoxIntervalValue), value); + } + } +} diff --git a/Services/Interfaces/IConfigurationService.cs b/Services/Interfaces/IConfigurationService.cs new file mode 100644 index 0000000..62bc7d8 --- /dev/null +++ b/Services/Interfaces/IConfigurationService.cs @@ -0,0 +1,21 @@ +using System; +using System.Drawing; + +namespace Pingerino.Services.Interfaces +{ + public interface IConfigurationService + { + T GetValue(string key, T defaultValue = default); + void SetValue(string key, T value); + void Save(); + void Load(); + + // Specific application settings + string LastUsedIpAddress { get; set; } + int PingInterval { get; set; } + bool AutoPingEnabled { get; set; } + Point FormPosition { get; set; } + string IpAddressValue { get; set; } + string TextBoxIntervalValue { get; set; } + } +} diff --git a/Services/Interfaces/ILoggingService.cs b/Services/Interfaces/ILoggingService.cs new file mode 100644 index 0000000..5e2f868 --- /dev/null +++ b/Services/Interfaces/ILoggingService.cs @@ -0,0 +1,20 @@ +using System; + +namespace Pingerino.Services.Interfaces +{ + public interface ILoggingService + { + void LogInformation(string message); + void LogWarning(string message); + void LogError(string message, Exception exception = null); + void LogDebug(string message); + } + + public enum LogLevel + { + Debug, + Information, + Warning, + Error + } +} diff --git a/Services/Interfaces/INetworkService.cs b/Services/Interfaces/INetworkService.cs new file mode 100644 index 0000000..513467b --- /dev/null +++ b/Services/Interfaces/INetworkService.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.Threading; +using System.Threading.Tasks; + +namespace Pingerino.Services.Interfaces +{ + public interface INetworkService : IDisposable + { + System.Threading.Tasks.Task GetPublicIpAddressAsync(CancellationToken cancellationToken = default); + System.Threading.Tasks.Task> GetNetworkAdaptersAsync(); + System.Threading.Tasks.Task ResetNetworkAdapterAsync(string adapterName, IProgress progress = null, CancellationToken cancellationToken = default); + System.Threading.Tasks.Task GetActiveEthernetAdapterAsync(); + System.Threading.Tasks.Task IsNetworkAvailableAsync(); + } + + public class NetworkAdapterInfo + { + public string Name { get; set; } + public string Description { get; set; } + public string PhysicalAddress { get; set; } + public bool IsDhcpEnabled { get; set; } + public string IpAddress { get; set; } + public string SubnetMask { get; set; } + public string DefaultGateway { get; set; } + public string DhcpServer { get; set; } + public List DnsServers { get; set; } = new List(); + public bool IsActive { get; set; } + public string InterfaceType { get; set; } + } +} diff --git a/Services/Interfaces/IPingService.cs b/Services/Interfaces/IPingService.cs new file mode 100644 index 0000000..95e056e --- /dev/null +++ b/Services/Interfaces/IPingService.cs @@ -0,0 +1,67 @@ +using System; +using System.Threading; +using System.Threading.Tasks; + +namespace Pingerino.Services.Interfaces +{ + public interface IPingService : IDisposable + { + event EventHandler PingCompleted; + event EventHandler StatisticsUpdated; + + System.Threading.Tasks.Task StartPingingAsync(string ipAddress, int intervalMs, CancellationToken cancellationToken = default); + System.Threading.Tasks.Task StopPingingAsync(); + System.Threading.Tasks.Task PingOnceAsync(string ipAddress, CancellationToken cancellationToken = default); + void ClearStatistics(); + NetworkStatistics GetCurrentStatistics(); + bool IsRunning { get; } + } + + public class PingResultEventArgs : EventArgs + { + public PingResult Result { get; } + public DateTime Timestamp { get; } + + public PingResultEventArgs(PingResult result, DateTime timestamp) + { + Result = result; + Timestamp = timestamp; + } + } + + public class NetworkStatisticsEventArgs : EventArgs + { + public NetworkStatistics Statistics { get; } + + public NetworkStatisticsEventArgs(NetworkStatistics statistics) + { + Statistics = statistics; + } + } + + public class PingResult + { + public string IpAddress { get; set; } + public bool IsSuccess { get; set; } + public long RoundTripTime { get; set; } + public string Status { get; set; } + public string ErrorMessage { get; set; } + } + + public class NetworkStatistics + { + public double Jitter { get; set; } + public double PacketLoss { get; set; } + public long MaxPing { get; set; } + public long MinPing { get; set; } + public double AveragePing { get; set; } + public double MaxJitter { get; set; } + public double MinJitter { get; set; } + public double AverageJitter { get; set; } + public double MaxPacketLoss { get; set; } + public double MinPacketLoss { get; set; } + public double AveragePacketLoss { get; set; } + public int TotalPings { get; set; } + public int SuccessfulPings { get; set; } + } +} diff --git a/Services/Interfaces/ISystemService.cs b/Services/Interfaces/ISystemService.cs new file mode 100644 index 0000000..a268bb9 --- /dev/null +++ b/Services/Interfaces/ISystemService.cs @@ -0,0 +1,16 @@ +using System; +using System.Threading; +using System.Threading.Tasks; + +namespace Pingerino.Services.Interfaces +{ + public interface ISystemService : IDisposable + { + System.Threading.Tasks.Task CleanTemporaryFilesAsync(IProgress progress = null, CancellationToken cancellationToken = default); + System.Threading.Tasks.Task CreateStartupTaskAsync(string taskName, string executablePath); + System.Threading.Tasks.Task RemoveStartupTaskAsync(string taskName); + System.Threading.Tasks.Task IsStartupTaskExistsAsync(string taskName); + void OpenNetworkAdaptersControl(); + System.Threading.Tasks.Task RunExternalScriptAsync(string scriptPath); + } +} diff --git a/Services/LoggingService.cs b/Services/LoggingService.cs new file mode 100644 index 0000000..f2d77a9 --- /dev/null +++ b/Services/LoggingService.cs @@ -0,0 +1,59 @@ +using System; +using System.IO; +using Pingerino.Services.Interfaces; + +namespace Pingerino.Services +{ + public class LoggingService : ILoggingService + { + private readonly string _logFilePath; + private readonly object _lockObject = new object(); + + public LoggingService() + { + var logDirectory = Path.Combine(Environment.GetFolderPath(Environment.SpecialFolder.ApplicationData), "Pingerino", "Logs"); + Directory.CreateDirectory(logDirectory); + _logFilePath = Path.Combine(logDirectory, $"pingerino_{DateTime.Now:yyyyMMdd}.log"); + } + + public void LogInformation(string message) + { + WriteLog(LogLevel.Information, message); + } + + public void LogWarning(string message) + { + WriteLog(LogLevel.Warning, message); + } + + public void LogError(string message, Exception exception = null) + { + var fullMessage = exception != null ? $"{message} - Exception: {exception}" : message; + WriteLog(LogLevel.Error, fullMessage); + } + + public void LogDebug(string message) + { + WriteLog(LogLevel.Debug, message); + } + + private void WriteLog(LogLevel level, string message) + { + try + { + lock (_lockObject) + { + var logEntry = $"[{DateTime.Now:yyyy-MM-dd HH:mm:ss.fff}] [{level}] {message}"; + File.AppendAllText(_logFilePath, logEntry + Environment.NewLine); + + // Also write to console for debugging + Console.WriteLine(logEntry); + } + } + catch + { + // Ignore logging errors to prevent infinite loops + } + } + } +} diff --git a/Services/NetworkService.cs b/Services/NetworkService.cs new file mode 100644 index 0000000..5000894 --- /dev/null +++ b/Services/NetworkService.cs @@ -0,0 +1,195 @@ +using System; +using System.Collections.Generic; +using System.Diagnostics; +using System.Linq; +using System.Net.Http; +using System.Net.NetworkInformation; +using System.Threading; +using System.Threading.Tasks; +using Pingerino.Services.Interfaces; + +namespace Pingerino.Services +{ + public class NetworkService : INetworkService + { + private readonly HttpClient _httpClient; + private readonly ILoggingService _logger; + private bool _disposed; + + public NetworkService(ILoggingService logger) + { + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + _httpClient = new HttpClient + { + Timeout = TimeSpan.FromSeconds(10) + }; + } + + public async System.Threading.Tasks.Task GetPublicIpAddressAsync(CancellationToken cancellationToken = default) + { + try + { + var response = await _httpClient.GetStringAsync("http://ipinfo.io/ip"); + var publicIp = response.Trim(); + _logger.LogInformation($"Retrieved public IP: {publicIp}"); + return publicIp; + } + catch (Exception ex) + { + _logger.LogError("Failed to retrieve public IP address", ex); + throw; + } + } + + public async System.Threading.Tasks.Task> GetNetworkAdaptersAsync() + { + return await System.Threading.Tasks.Task.Run(() => + { + var adapters = new List(); + + try + { + foreach (var nic in NetworkInterface.GetAllNetworkInterfaces()) + { + if (nic.NetworkInterfaceType == NetworkInterfaceType.Loopback) + continue; + + var properties = nic.GetIPProperties(); + var adapter = new NetworkAdapterInfo + { + Name = nic.Name, + Description = nic.Description, + PhysicalAddress = nic.GetPhysicalAddress().ToString(), + IsActive = nic.OperationalStatus == OperationalStatus.Up, + InterfaceType = nic.NetworkInterfaceType.ToString() + }; + + // Get IPv4 properties if available + try + { + var ipv4Properties = properties.GetIPv4Properties(); + adapter.IsDhcpEnabled = ipv4Properties.IsDhcpEnabled; + } + catch + { + adapter.IsDhcpEnabled = false; + } + + // Get IP addresses + var ipv4Address = properties.UnicastAddresses + .FirstOrDefault(ip => ip.Address.AddressFamily == System.Net.Sockets.AddressFamily.InterNetwork); + + if (ipv4Address != null) + { + adapter.IpAddress = ipv4Address.Address.ToString(); + adapter.SubnetMask = ipv4Address.IPv4Mask?.ToString(); + } + + // Get gateway + var gateway = properties.GatewayAddresses.FirstOrDefault(); + if (gateway != null) + { + adapter.DefaultGateway = gateway.Address.ToString(); + } + + // Get DHCP server + var dhcpServer = properties.DhcpServerAddresses.FirstOrDefault(); + if (dhcpServer != null) + { + adapter.DhcpServer = dhcpServer.ToString(); + } + + // Get DNS servers + adapter.DnsServers = properties.DnsAddresses.Select(dns => dns.ToString()).ToList(); + + adapters.Add(adapter); + } + + _logger.LogInformation($"Retrieved {adapters.Count} network adapters"); + } + catch (Exception ex) + { + _logger.LogError("Error retrieving network adapters", ex); + } + + return adapters; + }); + } + + public async System.Threading.Tasks.Task ResetNetworkAdapterAsync(string adapterName, IProgress progress = null, CancellationToken cancellationToken = default) + { + try + { + progress?.Report(10); + _logger.LogInformation($"Starting network reset for adapter: {adapterName}"); + + var processInfo = new ProcessStartInfo + { + FileName = "cmd.exe", + Arguments = $"/c ipconfig /release \"{adapterName}\" && ipconfig /renew \"{adapterName}\"", + UseShellExecute = false, + RedirectStandardOutput = true, + RedirectStandardError = true, + CreateNoWindow = true, + Verb = "runas" + }; + + progress?.Report(30); + + using (var process = Process.Start(processInfo)) + { + if (process == null) + { + _logger.LogError("Failed to start network reset process"); + return false; + } + + progress?.Report(60); + + process.WaitForExit(); + + progress?.Report(90); + + var success = process.ExitCode == 0; + if (success) + { + _logger.LogInformation($"Network reset completed successfully for {adapterName}"); + } + else + { + _logger.LogError($"Network reset failed with exit code: {process.ExitCode}"); + } + + progress?.Report(100); + return success; + } + } + catch (Exception ex) + { + _logger.LogError("Error during network reset", ex); + return false; + } + } + + public async System.Threading.Tasks.Task GetActiveEthernetAdapterAsync() + { + var adapters = await GetNetworkAdaptersAsync(); + return adapters.FirstOrDefault(a => + a.InterfaceType == NetworkInterfaceType.Ethernet.ToString() && + a.IsActive); + } + + public async System.Threading.Tasks.Task IsNetworkAvailableAsync() + { + return await System.Threading.Tasks.Task.Run(() => NetworkInterface.GetIsNetworkAvailable()); + } + + public void Dispose() + { + if (_disposed) return; + + _httpClient?.Dispose(); + _disposed = true; + } + } +} diff --git a/Services/PingService.cs b/Services/PingService.cs new file mode 100644 index 0000000..b3da28f --- /dev/null +++ b/Services/PingService.cs @@ -0,0 +1,255 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Net.NetworkInformation; +using System.Threading; +using System.Threading.Tasks; +using Pingerino.Services.Interfaces; + +namespace Pingerino.Services +{ + public class PingService : IPingService + { + private readonly ILoggingService _logger; + private readonly List _pingRoundTripTimes = new List(); + private readonly List _jitterValues = new List(); + private readonly List _packetLossValues = new List(); + private readonly object _lockObject = new object(); + private Timer _pingTimer; + private string _currentIpAddress; + private bool _disposed; + private CancellationTokenSource _cancellationTokenSource; + + public event EventHandler PingCompleted; + public event EventHandler StatisticsUpdated; + + public bool IsRunning { get; private set; } + + public PingService(ILoggingService logger) + { + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public async System.Threading.Tasks.Task StartPingingAsync(string ipAddress, int intervalMs, CancellationToken cancellationToken = default) + { + if (IsRunning) + { + await StopPingingAsync(); + } + + _currentIpAddress = ipAddress; + _cancellationTokenSource = CancellationTokenSource.CreateLinkedTokenSource(cancellationToken); + + _pingTimer = new Timer(async _ => await PingCallback(), null, 0, intervalMs); + IsRunning = true; + + _logger.LogInformation($"Started pinging {ipAddress} with interval {intervalMs}ms"); + } + + public async System.Threading.Tasks.Task StopPingingAsync() + { + if (!IsRunning) return; + + _pingTimer?.Dispose(); + _cancellationTokenSource?.Cancel(); + IsRunning = false; + + _logger.LogInformation("Stopped pinging"); + await System.Threading.Tasks.Task.CompletedTask; + } + + public async System.Threading.Tasks.Task PingOnceAsync(string ipAddress, CancellationToken cancellationToken = default) + { + try + { + if (!NetworkInterface.GetIsNetworkAvailable()) + { + return new PingResult + { + IpAddress = ipAddress, + IsSuccess = false, + Status = "No network connection available", + ErrorMessage = "Network unavailable" + }; + } + + using (var ping = new Ping()) + { + var reply = await ping.SendPingAsync(ipAddress); + + var result = new PingResult + { + IpAddress = ipAddress, + IsSuccess = reply.Status == IPStatus.Success, + RoundTripTime = reply.RoundtripTime, + Status = reply.Status.ToString() + }; + + if (result.IsSuccess) + { + UpdateStatistics(reply.RoundtripTime); + } + + return result; + } + } + catch (Exception ex) + { + _logger.LogError($"Error pinging {ipAddress}", ex); + return new PingResult + { + IpAddress = ipAddress, + IsSuccess = false, + Status = "Error", + ErrorMessage = ex.Message + }; + } + } + + public void ClearStatistics() + { + lock (_lockObject) + { + _pingRoundTripTimes.Clear(); + _jitterValues.Clear(); + _packetLossValues.Clear(); + } + + _logger.LogInformation("Statistics cleared"); + } + + public NetworkStatistics GetCurrentStatistics() + { + lock (_lockObject) + { + var stats = new NetworkStatistics(); + + if (_pingRoundTripTimes.Count > 0) + { + stats.MaxPing = _pingRoundTripTimes.Max(); + stats.MinPing = _pingRoundTripTimes.Min(); + stats.AveragePing = _pingRoundTripTimes.Average(); + stats.TotalPings = _pingRoundTripTimes.Count; + stats.SuccessfulPings = _pingRoundTripTimes.Count; + } + + if (_jitterValues.Count > 0) + { + stats.MaxJitter = _jitterValues.Max(); + stats.MinJitter = _jitterValues.Min(); + stats.AverageJitter = _jitterValues.Average(); + stats.Jitter = stats.AverageJitter; + } + + if (_packetLossValues.Count > 0) + { + stats.MaxPacketLoss = _packetLossValues.Max(); + stats.MinPacketLoss = _packetLossValues.Min(); + stats.AveragePacketLoss = _packetLossValues.Average(); + stats.PacketLoss = stats.AveragePacketLoss; + } + + return stats; + } + } + + private async System.Threading.Tasks.Task PingCallback() + { + if (_cancellationTokenSource?.Token.IsCancellationRequested == true) + return; + + try + { + var result = await PingOnceAsync(_currentIpAddress, _cancellationTokenSource?.Token ?? CancellationToken.None); + PingCompleted?.Invoke(this, new PingResultEventArgs(result, DateTime.Now)); + + // Calculate and update network statistics periodically + await CalculateNetworkStatisticsAsync(); + } + catch (Exception ex) + { + _logger.LogError("Error in ping callback", ex); + } + } + + private void UpdateStatistics(long roundTripTime) + { + lock (_lockObject) + { + _pingRoundTripTimes.Add(roundTripTime); + + // Calculate jitter if we have previous measurements + if (_pingRoundTripTimes.Count > 1) + { + var previousTime = _pingRoundTripTimes[_pingRoundTripTimes.Count - 2]; + var jitter = Math.Abs(roundTripTime - previousTime); + _jitterValues.Add(jitter); + } + } + } + + private async System.Threading.Tasks.Task CalculateNetworkStatisticsAsync() + { + try + { + // Calculate packet loss over the last 10 pings + var packetLoss = await CalculatePacketLossAsync(_currentIpAddress, 10); + + lock (_lockObject) + { + _packetLossValues.Add(packetLoss); + } + + var stats = GetCurrentStatistics(); + StatisticsUpdated?.Invoke(this, new NetworkStatisticsEventArgs(stats)); + } + catch (Exception ex) + { + _logger.LogError("Error calculating network statistics", ex); + } + } + + private async System.Threading.Tasks.Task CalculatePacketLossAsync(string ipAddress, int count) + { + int failedPings = 0; + var tasks = new List>(); + + for (int i = 0; i < count; i++) + { + tasks.Add(TestSinglePingAsync(ipAddress)); + } + + var results = await System.Threading.Tasks.Task.WhenAll(tasks); + failedPings = results.Count(r => !r); + + return (double)failedPings / count * 100; + } + + private async System.Threading.Tasks.Task TestSinglePingAsync(string ipAddress) + { + try + { + using (var ping = new Ping()) + { + var reply = await ping.SendPingAsync(ipAddress); + return reply.Status == IPStatus.Success; + } + } + catch + { + return false; + } + } + + public void Dispose() + { + if (_disposed) return; + + _pingTimer?.Dispose(); + _cancellationTokenSource?.Cancel(); + _cancellationTokenSource?.Dispose(); + + _disposed = true; + } + } +} diff --git a/Services/SystemService.cs b/Services/SystemService.cs new file mode 100644 index 0000000..317cbee --- /dev/null +++ b/Services/SystemService.cs @@ -0,0 +1,238 @@ +using System; +using System.Diagnostics; +using System.IO; +using System.Security.Principal; +using System.Threading; +using System.Threading.Tasks; +using System.Windows.Forms; +using Microsoft.Win32.TaskScheduler; +using Pingerino.Services.Interfaces; + +namespace Pingerino.Services +{ + public class SystemService : ISystemService + { + private readonly ILoggingService _logger; + private bool _disposed; + + public SystemService(ILoggingService logger) + { + _logger = logger ?? throw new ArgumentNullException(nameof(logger)); + } + + public async System.Threading.Tasks.Task CleanTemporaryFilesAsync(IProgress progress = null, CancellationToken cancellationToken = default) + { + try + { + _logger.LogInformation("Starting temporary files cleanup"); + + var folders = new[] + { + Environment.ExpandEnvironmentVariables(@"%systemroot%\temp"), + Environment.ExpandEnvironmentVariables(@"%systemroot%\Prefetch"), + Environment.ExpandEnvironmentVariables(@"%userprofile%\LocalS~1\Temp"), + Environment.ExpandEnvironmentVariables(@"%userprofile%\AppData\Local\Temp") + }; + + int totalSteps = folders.Length * 2; + int currentStep = 0; + + foreach (var folder in folders) + { + if (cancellationToken.IsCancellationRequested) + return false; + + await CleanFolderAsync(folder, progress, currentStep, totalSteps); + currentStep += 2; + } + + progress?.Report(100); + _logger.LogInformation("Temporary files cleanup completed"); + return true; + } + catch (Exception ex) + { + _logger.LogError("Error during temporary files cleanup", ex); + return false; + } + } + + private async System.Threading.Tasks.Task CleanFolderAsync(string folderPath, IProgress progress, int currentStep, int totalSteps) + { + try + { + if (!Directory.Exists(folderPath)) + return; + + var dirInfo = new DirectoryInfo(folderPath); + + // Delete files + await System.Threading.Tasks.Task.Run(() => + { + foreach (var file in dirInfo.GetFiles()) + { + try + { + file.Delete(); + } + catch + { + // Ignore individual file deletion errors + } + } + }); + + progress?.Report((currentStep + 1) * 100 / totalSteps); + + // Delete directories + await System.Threading.Tasks.Task.Run(() => + { + foreach (var dir in dirInfo.GetDirectories()) + { + try + { + dir.Delete(true); + } + catch + { + // Ignore individual directory deletion errors + } + } + }); + + progress?.Report((currentStep + 2) * 100 / totalSteps); + } + catch (Exception ex) + { + _logger.LogWarning($"Error cleaning folder {folderPath}: {ex.Message}"); + } + } + + public async System.Threading.Tasks.Task CreateStartupTaskAsync(string taskName, string executablePath) + { + try + { + using (var ts = new TaskService()) + { + var td = ts.NewTask(); + + td.RegistrationInfo.Description = taskName; + td.Principal.RunLevel = TaskRunLevel.Highest; + td.Principal.LogonType = TaskLogonType.InteractiveToken; + td.Triggers.Add(new LogonTrigger()); + + var execAction = new ExecAction(executablePath) + { + WorkingDirectory = Path.GetDirectoryName(executablePath) + }; + td.Actions.Add(execAction); + + var currentUserName = WindowsIdentity.GetCurrent().Name; + ts.RootFolder.RegisterTaskDefinition(taskName, td, TaskCreation.CreateOrUpdate, + currentUserName, null, TaskLogonType.InteractiveToken); + + _logger.LogInformation($"Startup task '{taskName}' created successfully"); + return await System.Threading.Tasks.Task.FromResult(true); + } + } + catch (Exception ex) + { + _logger.LogError($"Error creating startup task '{taskName}'", ex); + return await System.Threading.Tasks.Task.FromResult(false); + } + } + + public async System.Threading.Tasks.Task RemoveStartupTaskAsync(string taskName) + { + try + { + using (var ts = new TaskService()) + { + ts.RootFolder.DeleteTask(taskName, false); + + _logger.LogInformation($"Startup task '{taskName}' removed successfully"); + return await System.Threading.Tasks.Task.FromResult(true); + } + } + catch (Exception ex) + { + _logger.LogError($"Error removing startup task '{taskName}'", ex); + return await System.Threading.Tasks.Task.FromResult(false); + } + } + + public async System.Threading.Tasks.Task IsStartupTaskExistsAsync(string taskName) + { + try + { + using (var ts = new TaskService()) + { + var existingTask = ts.GetTask(taskName); + return await System.Threading.Tasks.Task.FromResult(existingTask != null); + } + } + catch (Exception ex) + { + _logger.LogError($"Error checking startup task '{taskName}'", ex); + return await System.Threading.Tasks.Task.FromResult(false); + } + } + + public void OpenNetworkAdaptersControl() + { + try + { + Process.Start("control", "ncpa.cpl"); + _logger.LogInformation("Opened network adapters control panel"); + } + catch (Exception ex) + { + _logger.LogError("Error opening network adapters control panel", ex); + } + } + + public async System.Threading.Tasks.Task RunExternalScriptAsync(string scriptPath) + { + try + { + if (!File.Exists(scriptPath)) + { + _logger.LogWarning($"Script not found: {scriptPath}"); + return false; + } + + var processInfo = new ProcessStartInfo + { + FileName = scriptPath, + UseShellExecute = true + }; + + using (var process = Process.Start(processInfo)) + { + if (process == null) + { + _logger.LogError("Failed to start external script"); + return false; + } + + process.WaitForExit(); + + var success = process.ExitCode == 0; + _logger.LogInformation($"External script execution completed with exit code: {process.ExitCode}"); + return success; + } + } + catch (Exception ex) + { + _logger.LogError($"Error running external script: {scriptPath}", ex); + return false; + } + } + + public void Dispose() + { + if (_disposed) return; + _disposed = true; + } + } +} diff --git a/Settings.cs b/Settings.cs new file mode 100644 index 0000000..405e6c7 --- /dev/null +++ b/Settings.cs @@ -0,0 +1,33 @@ +namespace Pingerino.Properties +{ + + + // This class allows you to handle specific events on the settings class: + // The SettingChanging event is raised before a setting's value is changed. + // The PropertyChanged event is raised after a setting's value is changed. + // The SettingsLoaded event is raised after the setting values are loaded. + // The SettingsSaving event is raised before the setting values are saved. + internal sealed partial class Settings + { + + public Settings() + { + // // To add event handlers for saving and changing settings, uncomment the lines below: + // + // this.SettingChanging += this.SettingChangingEventHandler; + // + // this.SettingsSaving += this.SettingsSavingEventHandler; + // + } + + private void SettingChangingEventHandler(object sender, System.Configuration.SettingChangingEventArgs e) + { + // Add code to handle the SettingChangingEvent event here. + } + + private void SettingsSavingEventHandler(object sender, System.ComponentModel.CancelEventArgs e) + { + // Add code to handle the SettingsSaving event here. + } + } +} diff --git a/Utilities/UIHelper.cs b/Utilities/UIHelper.cs new file mode 100644 index 0000000..63ccca5 --- /dev/null +++ b/Utilities/UIHelper.cs @@ -0,0 +1,163 @@ +using System; +using System.Drawing; +using System.Runtime.InteropServices; +using System.Windows.Forms; + +namespace Pingerino.Utilities +{ + public static class UIHelper + { + // Windows API constants and imports for form dragging + public const int WM_NCLBUTTONDOWN = 0xA1; + public const int HT_CAPTION = 0x2; + + [DllImport("user32.dll")] + public static extern int SendMessage(IntPtr hWnd, int Msg, int wParam, int lParam); + + [DllImport("user32.dll")] + public static extern bool ReleaseCapture(); + + [DllImport("Gdi32.dll", EntryPoint = "CreateRoundRectRgn")] + public static extern IntPtr CreateRoundRectRgn( + int nLeftRect, int nTopRect, int nRightRect, int nBottomRect, + int nWidthEllipse, int nHeightEllipse); + + /// + /// Enables form dragging by mouse + /// + public static void EnableFormDragging(Form form, Control dragControl) + { + dragControl.MouseDown += (sender, e) => + { + if (e.Button == MouseButtons.Left) + { + ReleaseCapture(); + SendMessage(form.Handle, WM_NCLBUTTONDOWN, HT_CAPTION, 0); + } + }; + } + + /// + /// Applies rounded corners to a form + /// + public static void ApplyRoundedCorners(Form form, int radius = 30) + { + form.Region = Region.FromHrgn(CreateRoundRectRgn(0, 0, form.Width, form.Height, radius, radius)); + } + + /// + /// Safely updates UI control from any thread + /// + public static void SafeInvoke(Control control, Action action) + { + if (control == null || control.IsDisposed) + return; + + if (control.InvokeRequired) + { + try + { + control.Invoke(action); + } + catch (ObjectDisposedException) + { + // Control was disposed while trying to invoke + } + catch (InvalidOperationException) + { + // Control handle was not created or is being destroyed + } + } + else + { + action(); + } + } + + /// + /// Safely updates UI control from any thread with return value + /// + public static T SafeInvoke(Control control, Func func) + { + if (control == null || control.IsDisposed) + return default(T); + + if (control.InvokeRequired) + { + try + { + return (T)control.Invoke(func); + } + catch (ObjectDisposedException) + { + return default(T); + } + catch (InvalidOperationException) + { + return default(T); + } + } + else + { + return func(); + } + } + + /// + /// Shows an error message with consistent styling + /// + public static void ShowError(string message, string title = "Error") + { + MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Error); + } + + /// + /// Shows an information message with consistent styling + /// + public static void ShowInformation(string message, string title = "Information") + { + MessageBox.Show(message, title, MessageBoxButtons.OK, MessageBoxIcon.Information); + } + + /// + /// Shows a confirmation dialog + /// + public static bool ShowConfirmation(string message, string title = "Confirm") + { + return MessageBox.Show(message, title, MessageBoxButtons.YesNo, MessageBoxIcon.Question) == DialogResult.Yes; + } + + /// + /// Formats time span for display + /// + public static string FormatTimeSpan(TimeSpan timeSpan) + { + if (timeSpan.TotalDays >= 1) + return $"{timeSpan.Days}d {timeSpan.Hours}h {timeSpan.Minutes}m"; + if (timeSpan.TotalHours >= 1) + return $"{timeSpan.Hours}h {timeSpan.Minutes}m {timeSpan.Seconds}s"; + if (timeSpan.TotalMinutes >= 1) + return $"{timeSpan.Minutes}m {timeSpan.Seconds}s"; + + return $"{timeSpan.Seconds}.{timeSpan.Milliseconds:000}s"; + } + + /// + /// Formats bytes for display + /// + public static string FormatBytes(long bytes) + { + string[] suffixes = { "B", "KB", "MB", "GB", "TB" }; + int counter = 0; + decimal number = bytes; + + while (Math.Round(number / 1024) >= 1) + { + number /= 1024; + counter++; + } + + return $"{number:n1} {suffixes[counter]}"; + } + } +} diff --git a/Utilities/ValidationHelper.cs b/Utilities/ValidationHelper.cs new file mode 100644 index 0000000..cbee05b --- /dev/null +++ b/Utilities/ValidationHelper.cs @@ -0,0 +1,90 @@ +using System; +using System.Net; +using System.Text.RegularExpressions; + +namespace Pingerino.Utilities +{ + public static class ValidationHelper + { + private static readonly Regex IpAddressRegex = new Regex( + @"^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$", + RegexOptions.Compiled); + + private static readonly Regex HostnameRegex = new Regex( + @"^(?:[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?\.)*[a-zA-Z0-9](?:[a-zA-Z0-9-]{0,61}[a-zA-Z0-9])?$", + RegexOptions.Compiled); + + public static bool IsValidIpAddress(string ipAddress) + { + if (string.IsNullOrWhiteSpace(ipAddress)) + return false; + + return IPAddress.TryParse(ipAddress, out _) || IpAddressRegex.IsMatch(ipAddress); + } + + public static bool IsValidHostname(string hostname) + { + if (string.IsNullOrWhiteSpace(hostname)) + return false; + + if (hostname.Length > 253) + return false; + + return HostnameRegex.IsMatch(hostname); + } + + public static bool IsValidIpAddressOrHostname(string address) + { + return IsValidIpAddress(address) || IsValidHostname(address); + } + + public static bool IsValidPingInterval(string intervalText, out int interval) + { + interval = 0; + + if (string.IsNullOrWhiteSpace(intervalText)) + return false; + + if (!int.TryParse(intervalText, out interval)) + return false; + + return interval >= 100 && interval <= 60000; // 100ms to 60 seconds + } + + public static bool IsValidPingInterval(int interval) + { + return interval >= 100 && interval <= 60000; + } + + public static string SanitizeInput(string input) + { + if (string.IsNullOrEmpty(input)) + return string.Empty; + + return input.Trim(); + } + + public static string GetValidationErrorMessage(string fieldName, string value) + { + if (string.IsNullOrWhiteSpace(value)) + return $"{fieldName} cannot be empty."; + + switch (fieldName.ToLower()) + { + case "ip address": + case "ipaddress": + if (!IsValidIpAddressOrHostname(value)) + return "Please enter a valid IP address or hostname."; + break; + + case "interval": + case "ping interval": + if (!IsValidPingInterval(value, out _)) + return "Ping interval must be between 100 and 60000 milliseconds."; + break; + } + + return null; + } + } +} diff --git a/packages.config b/packages.config new file mode 100644 index 0000000..300bb78 --- /dev/null +++ b/packages.config @@ -0,0 +1,5 @@ + + + + + \ No newline at end of file diff --git a/xray_drawing_1_origi_fETdd.ico b/xray_drawing_1_origi_fETdd.ico new file mode 100644 index 0000000000000000000000000000000000000000..fbf7df23a596b6027deec7388ebf24cad5736158 GIT binary patch literal 13622 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 IVS}Lm0ZuQJ4*&oF literal 0 HcmV?d00001