Initial commit
This commit is contained in:
BIN
ServiceCheck/.vs/ServiceCheck/v14/.suo
Normal file
BIN
ServiceCheck/.vs/ServiceCheck/v14/.suo
Normal file
Binary file not shown.
22
ServiceCheck/ServiceCheck.sln
Normal file
22
ServiceCheck/ServiceCheck.sln
Normal file
@@ -0,0 +1,22 @@
|
||||
|
||||
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||
# Visual Studio 2013
|
||||
VisualStudioVersion = 12.0.40629.0
|
||||
MinimumVisualStudioVersion = 10.0.40219.1
|
||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "ServiceCheck", "ServiceCheck\ServiceCheck.vbproj", "{CC8AB770-4825-4381-ACF9-58922AA2A643}"
|
||||
EndProject
|
||||
Global
|
||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||
Debug|Any CPU = Debug|Any CPU
|
||||
Release|Any CPU = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||
{CC8AB770-4825-4381-ACF9-58922AA2A643}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||
{CC8AB770-4825-4381-ACF9-58922AA2A643}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||
{CC8AB770-4825-4381-ACF9-58922AA2A643}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||
{CC8AB770-4825-4381-ACF9-58922AA2A643}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||
EndGlobalSection
|
||||
GlobalSection(SolutionProperties) = preSolution
|
||||
HideSolutionNode = FALSE
|
||||
EndGlobalSection
|
||||
EndGlobal
|
||||
BIN
ServiceCheck/ServiceCheck.v12.suo
Normal file
BIN
ServiceCheck/ServiceCheck.v12.suo
Normal file
Binary file not shown.
38
ServiceCheck/ServiceCheck/App.config
Normal file
38
ServiceCheck/ServiceCheck/App.config
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<section name="ServiceCheck.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
|
||||
</startup>
|
||||
<userSettings>
|
||||
<ServiceCheck.My.MySettings>
|
||||
<setting name="Service1" serializeAs="String">
|
||||
<value>EDKB12WS</value>
|
||||
</setting>
|
||||
<setting name="ConnectionString" serializeAs="String">
|
||||
<value>data source=shu00;initial catalog=edoka;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29
|
||||
|
||||
</value>
|
||||
</setting>
|
||||
<setting name="NOKMail" serializeAs="String">
|
||||
<value>stefan.hutter@tkb.ch</value>
|
||||
</setting>
|
||||
<setting name="Umgebung" serializeAs="String">
|
||||
<value>INT</value>
|
||||
</setting>
|
||||
<setting name="Service2" serializeAs="String">
|
||||
<value>EDKB04</value>
|
||||
</setting>
|
||||
<setting name="Service3" serializeAs="String">
|
||||
<value>EDKB08WS</value>
|
||||
</setting>
|
||||
<setting name="Service4" serializeAs="String">
|
||||
<value>EDKB07WS</value>
|
||||
</setting>
|
||||
</ServiceCheck.My.MySettings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
106
ServiceCheck/ServiceCheck/Module1.vb
Normal file
106
ServiceCheck/ServiceCheck/Module1.vb
Normal file
@@ -0,0 +1,106 @@
|
||||
Imports System.IO.File
|
||||
Imports System.Data.SqlClient
|
||||
Imports System.Data.SqlTypes
|
||||
Imports System.ComponentModel
|
||||
Imports System.IO
|
||||
Imports System.SystemException
|
||||
Imports System.Reflection
|
||||
Imports System.Configuration
|
||||
Imports System.ServiceProcess
|
||||
|
||||
Module Module1
|
||||
|
||||
Dim Resultstring As String = "Servicechecker Start: " + Format(Now, "dd.MM.yyyy HH:mm:ss") + vbCrLf + vbCrLf
|
||||
Sub Main()
|
||||
Try
|
||||
Dim s As String
|
||||
FileOpen(1, System.AppDomain.CurrentDomain.BaseDirectory + "\services.txt", OpenMode.Input)
|
||||
While Not EOF(1)
|
||||
Input(1, s)
|
||||
Console.WriteLine("Check:" + s)
|
||||
If Check_Service(s) = False Then
|
||||
Resultstring = Resultstring + s + ": " + Chr(9) + "NOK" + vbCrLf
|
||||
Console.WriteLine("NOK")
|
||||
Else
|
||||
Resultstring = Resultstring + s + ": " + Chr(9) + "OK" + vbCrLf
|
||||
Console.WriteLine("OK")
|
||||
End If
|
||||
End While
|
||||
'For Each ObjSetting As Configuration.SettingsProperty In My.Settings.Properties
|
||||
' If Left(ObjSetting.Name, 7) = "Service" Then
|
||||
' Console.WriteLine("Check:" + ObjSetting.DefaultValue)
|
||||
' If Check_Service(ObjSetting.DefaultValue) = False Then
|
||||
' Resultstring = Resultstring + ObjSetting.DefaultValue + ": " + Chr(9) + "NOK" + vbCrLf
|
||||
' Console.WriteLine("NOK")
|
||||
' Else
|
||||
' Resultstring = Resultstring + ObjSetting.DefaultValue + ": " + Chr(9) + "OK" + vbCrLf
|
||||
' Console.WriteLine("OK")
|
||||
' End If
|
||||
' End If
|
||||
'Next
|
||||
FileClose(1)
|
||||
Catch ex As Exception
|
||||
|
||||
Resultstring = Resultstring + "Fehler: " + ex.Message + vbCrLf
|
||||
Console.WriteLine("NOK: " + ex.Message)
|
||||
End Try
|
||||
Resultstring = Resultstring + vbCrLf + vbCrLf + "Servicechecker Ende: " + Format(Now, "dd.MM.yyyy HH:mm:ss")
|
||||
Sendmail(My.Settings.NOKMail, Resultstring)
|
||||
End Sub
|
||||
|
||||
Public Function Check_Service(ByVal Servicename As String) As Boolean
|
||||
Try
|
||||
Dim sc As New ServiceController(Servicename)
|
||||
|
||||
If sc.Status.Equals(ServiceControllerStatus.Stopped) Or sc.Status.Equals(ServiceControllerStatus.StopPending) Then
|
||||
Return False
|
||||
Else
|
||||
Return True
|
||||
|
||||
End If
|
||||
Catch ex As Exception
|
||||
Console.WriteLine(ex.Message)
|
||||
Return False
|
||||
End Try
|
||||
|
||||
End Function
|
||||
|
||||
Public Function Sendmail(ByVal email As String, ByVal msg As String) As Boolean
|
||||
Dim oread As System.IO.StreamReader
|
||||
Console.WriteLine("Sendmail")
|
||||
'Mails im Fehler- bzw. im OK-Fall versenden
|
||||
oread = IO.File.OpenText(ApplicationPath() + "edokaconn.cfg")
|
||||
Dim cstring As String = oread.ReadLine
|
||||
oread.Close()
|
||||
|
||||
Dim meldung As String = msg
|
||||
Dim betreff As String = "EDOKA-Service-Checker" + My.Settings.Umgebung
|
||||
Dim conn As New SqlConnection(cstring)
|
||||
Dim scmCmdToExecute As SqlCommand = New SqlCommand
|
||||
scmCmdToExecute.CommandText = "dbo.SP_SendMail"
|
||||
scmCmdToExecute.CommandType = CommandType.StoredProcedure
|
||||
Dim dtToReturn As DataTable = New DataTable
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@email", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, email))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@betreff", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, betreff))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@meldung", SqlDbType.VarChar, 1024, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, meldung))
|
||||
scmCmdToExecute.Connection = conn
|
||||
Sendmail = True
|
||||
Try
|
||||
conn.Open()
|
||||
scmCmdToExecute.ExecuteNonQuery()
|
||||
conn.Close()
|
||||
Console.WriteLine("Mail gesendet")
|
||||
Catch ex As Exception
|
||||
Sendmail = False
|
||||
Console.WriteLine(ex.Message)
|
||||
Finally
|
||||
scmCmdToExecute.Dispose()
|
||||
End Try
|
||||
End Function
|
||||
|
||||
Public Function ApplicationPath() As String
|
||||
'Return Path.GetDirectoryName([Assembly].GetExecutingAssembly().Location)
|
||||
Return Path.GetDirectoryName([Assembly].GetEntryAssembly().Location) + "\"
|
||||
End Function
|
||||
|
||||
End Module
|
||||
13
ServiceCheck/ServiceCheck/My Project/Application.Designer.vb
generated
Normal file
13
ServiceCheck/ServiceCheck/My Project/Application.Designer.vb
generated
Normal file
@@ -0,0 +1,13 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Dieser Code wurde von einem Tool generiert.
|
||||
' Laufzeitversion:4.0.30319.42000
|
||||
'
|
||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
' der Code erneut generiert wird.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
10
ServiceCheck/ServiceCheck/My Project/Application.myapp
Normal file
10
ServiceCheck/ServiceCheck/My Project/Application.myapp
Normal file
@@ -0,0 +1,10 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<MyApplicationData xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
||||
<MySubMain>false</MySubMain>
|
||||
<SingleInstance>false</SingleInstance>
|
||||
<ShutdownMode>0</ShutdownMode>
|
||||
<EnableVisualStyles>true</EnableVisualStyles>
|
||||
<AuthenticationMode>0</AuthenticationMode>
|
||||
<ApplicationType>2</ApplicationType>
|
||||
<SaveMySettingsOnExit>true</SaveMySettingsOnExit>
|
||||
</MyApplicationData>
|
||||
35
ServiceCheck/ServiceCheck/My Project/AssemblyInfo.vb
Normal file
35
ServiceCheck/ServiceCheck/My Project/AssemblyInfo.vb
Normal file
@@ -0,0 +1,35 @@
|
||||
Imports System
|
||||
Imports System.Reflection
|
||||
Imports System.Runtime.InteropServices
|
||||
|
||||
' Allgemeine Informationen über eine Assembly werden über die folgenden
|
||||
' Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern,
|
||||
' die mit einer Assembly verknüpft sind.
|
||||
|
||||
' Die Werte der Assemblyattribute überprüfen
|
||||
|
||||
<Assembly: AssemblyTitle("ServiceCheck")>
|
||||
<Assembly: AssemblyDescription("")>
|
||||
<Assembly: AssemblyCompany("")>
|
||||
<Assembly: AssemblyProduct("ServiceCheck")>
|
||||
<Assembly: AssemblyCopyright("Copyright © 2016")>
|
||||
<Assembly: AssemblyTrademark("")>
|
||||
|
||||
<Assembly: ComVisible(False)>
|
||||
|
||||
'Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird
|
||||
<Assembly: Guid("8f323290-fb8f-4dbc-91f5-d6686b785e4a")>
|
||||
|
||||
' Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten:
|
||||
'
|
||||
' Hauptversion
|
||||
' Nebenversion
|
||||
' Buildnummer
|
||||
' Revision
|
||||
'
|
||||
' Sie können alle Werte angeben oder die standardmäßigen Build- und Revisionsnummern
|
||||
' übernehmen, indem Sie "*" eingeben:
|
||||
' <Assembly: AssemblyVersion("1.0.*")>
|
||||
|
||||
<Assembly: AssemblyVersion("1.0.0.0")>
|
||||
<Assembly: AssemblyFileVersion("1.0.0.0")>
|
||||
63
ServiceCheck/ServiceCheck/My Project/Resources.Designer.vb
generated
Normal file
63
ServiceCheck/ServiceCheck/My Project/Resources.Designer.vb
generated
Normal file
@@ -0,0 +1,63 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Dieser Code wurde von einem Tool generiert.
|
||||
' Laufzeitversion:4.0.30319.42000
|
||||
'
|
||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
' der Code erneut generiert wird.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
Imports System
|
||||
|
||||
Namespace My.Resources
|
||||
|
||||
'Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
||||
'-Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
||||
'Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
||||
'mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
||||
'''<summary>
|
||||
''' Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
'''</summary>
|
||||
<Global.System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0"), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.Microsoft.VisualBasic.HideModuleNameAttribute()> _
|
||||
Friend Module Resources
|
||||
|
||||
Private resourceMan As Global.System.Resources.ResourceManager
|
||||
|
||||
Private resourceCulture As Global.System.Globalization.CultureInfo
|
||||
|
||||
'''<summary>
|
||||
''' Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend ReadOnly Property ResourceManager() As Global.System.Resources.ResourceManager
|
||||
Get
|
||||
If Object.ReferenceEquals(resourceMan, Nothing) Then
|
||||
Dim temp As Global.System.Resources.ResourceManager = New Global.System.Resources.ResourceManager("ServiceCheck.Resources", GetType(Resources).Assembly)
|
||||
resourceMan = temp
|
||||
End If
|
||||
Return resourceMan
|
||||
End Get
|
||||
End Property
|
||||
|
||||
'''<summary>
|
||||
''' Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
''' Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
'''</summary>
|
||||
<Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Friend Property Culture() As Global.System.Globalization.CultureInfo
|
||||
Get
|
||||
Return resourceCulture
|
||||
End Get
|
||||
Set
|
||||
resourceCulture = value
|
||||
End Set
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
117
ServiceCheck/ServiceCheck/My Project/Resources.resx
Normal file
117
ServiceCheck/ServiceCheck/My Project/Resources.resx
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<root>
|
||||
<!--
|
||||
Microsoft ResX Schema
|
||||
|
||||
Version 2.0
|
||||
|
||||
The primary goals of this format is to allow a simple XML format
|
||||
that is mostly human readable. The generation and parsing of the
|
||||
various data types are done through the TypeConverter classes
|
||||
associated with the data types.
|
||||
|
||||
Example:
|
||||
|
||||
... ado.net/XML headers & schema ...
|
||||
<resheader name="resmimetype">text/microsoft-resx</resheader>
|
||||
<resheader name="version">2.0</resheader>
|
||||
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
|
||||
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
|
||||
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
|
||||
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
|
||||
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
|
||||
<value>[base64 mime encoded serialized .NET Framework object]</value>
|
||||
</data>
|
||||
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
|
||||
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
|
||||
<comment>This is a comment</comment>
|
||||
</data>
|
||||
|
||||
There are any number of "resheader" rows that contain simple
|
||||
name/value pairs.
|
||||
|
||||
Each data row contains a name, and value. The row also contains a
|
||||
type or mimetype. Type corresponds to a .NET class that support
|
||||
text/value conversion through the TypeConverter architecture.
|
||||
Classes that don't support this are serialized and stored with the
|
||||
mimetype set.
|
||||
|
||||
The mimetype is used for serialized objects, and tells the
|
||||
ResXResourceReader how to depersist the object. This is currently not
|
||||
extensible. For a given mimetype the value must be set accordingly:
|
||||
|
||||
Note - application/x-microsoft.net.object.binary.base64 is the format
|
||||
that the ResXResourceWriter will generate, however the reader can
|
||||
read any of the formats listed below.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.binary.base64
|
||||
value : The object must be serialized with
|
||||
: System.Serialization.Formatters.Binary.BinaryFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.soap.base64
|
||||
value : The object must be serialized with
|
||||
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
|
||||
: and then encoded with base64 encoding.
|
||||
|
||||
mimetype: application/x-microsoft.net.object.bytearray.base64
|
||||
value : The object must be serialized into a byte array
|
||||
: using a System.ComponentModel.TypeConverter
|
||||
: and then encoded with base64 encoding.
|
||||
-->
|
||||
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
|
||||
<xsd:element name="root" msdata:IsDataSet="true">
|
||||
<xsd:complexType>
|
||||
<xsd:choice maxOccurs="unbounded">
|
||||
<xsd:element name="metadata">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
<xsd:attribute name="type" type="xsd:string" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="assembly">
|
||||
<xsd:complexType>
|
||||
<xsd:attribute name="alias" type="xsd:string" />
|
||||
<xsd:attribute name="name" type="xsd:string" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="data">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
|
||||
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
|
||||
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
<xsd:element name="resheader">
|
||||
<xsd:complexType>
|
||||
<xsd:sequence>
|
||||
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
|
||||
</xsd:sequence>
|
||||
<xsd:attribute name="name" type="xsd:string" use="required" />
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:choice>
|
||||
</xsd:complexType>
|
||||
</xsd:element>
|
||||
</xsd:schema>
|
||||
<resheader name="resmimetype">
|
||||
<value>text/microsoft-resx</value>
|
||||
</resheader>
|
||||
<resheader name="version">
|
||||
<value>2.0</value>
|
||||
</resheader>
|
||||
<resheader name="reader">
|
||||
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
<resheader name="writer">
|
||||
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
|
||||
</resheader>
|
||||
</root>
|
||||
158
ServiceCheck/ServiceCheck/My Project/Settings.Designer.vb
generated
Normal file
158
ServiceCheck/ServiceCheck/My Project/Settings.Designer.vb
generated
Normal file
@@ -0,0 +1,158 @@
|
||||
'------------------------------------------------------------------------------
|
||||
' <auto-generated>
|
||||
' Dieser Code wurde von einem Tool generiert.
|
||||
' Laufzeitversion:4.0.30319.42000
|
||||
'
|
||||
' Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||
' der Code erneut generiert wird.
|
||||
' </auto-generated>
|
||||
'------------------------------------------------------------------------------
|
||||
|
||||
Option Strict On
|
||||
Option Explicit On
|
||||
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute(), _
|
||||
Global.System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0"), _
|
||||
Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Partial Friend NotInheritable Class MySettings
|
||||
Inherits Global.System.Configuration.ApplicationSettingsBase
|
||||
|
||||
Private Shared defaultInstance As MySettings = CType(Global.System.Configuration.ApplicationSettingsBase.Synchronized(New MySettings()),MySettings)
|
||||
|
||||
#Region "Funktion zum automatischen Speichern von My.Settings"
|
||||
#If _MyType = "WindowsForms" Then
|
||||
Private Shared addedHandler As Boolean
|
||||
|
||||
Private Shared addedHandlerLockObject As New Object
|
||||
|
||||
<Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), Global.System.ComponentModel.EditorBrowsableAttribute(Global.System.ComponentModel.EditorBrowsableState.Advanced)> _
|
||||
Private Shared Sub AutoSaveSettings(ByVal sender As Global.System.Object, ByVal e As Global.System.EventArgs)
|
||||
If My.Application.SaveMySettingsOnExit Then
|
||||
My.Settings.Save()
|
||||
End If
|
||||
End Sub
|
||||
#End If
|
||||
#End Region
|
||||
|
||||
Public Shared ReadOnly Property [Default]() As MySettings
|
||||
Get
|
||||
|
||||
#If _MyType = "WindowsForms" Then
|
||||
If Not addedHandler Then
|
||||
SyncLock addedHandlerLockObject
|
||||
If Not addedHandler Then
|
||||
AddHandler My.Application.Shutdown, AddressOf AutoSaveSettings
|
||||
addedHandler = True
|
||||
End If
|
||||
End SyncLock
|
||||
End If
|
||||
#End If
|
||||
Return defaultInstance
|
||||
End Get
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("EDKB12WS")> _
|
||||
Public Property Service1() As String
|
||||
Get
|
||||
Return CType(Me("Service1"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Service1") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("data source=shu00;initial catalog=edoka;integrated security=SSPI;persist security"& _
|
||||
" info=false;workstation id=;packet size=4096;user id=sa;password=*shu29"&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10)&Global.Microsoft.VisualBasic.ChrW(13)&Global.Microsoft.VisualBasic.ChrW(10))> _
|
||||
Public Property ConnectionString() As String
|
||||
Get
|
||||
Return CType(Me("ConnectionString"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("ConnectionString") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("stefan.hutter@tkb.ch")> _
|
||||
Public Property NOKMail() As String
|
||||
Get
|
||||
Return CType(Me("NOKMail"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("NOKMail") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("INT")> _
|
||||
Public Property Umgebung() As String
|
||||
Get
|
||||
Return CType(Me("Umgebung"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Umgebung") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("EDKB04")> _
|
||||
Public Property Service2() As String
|
||||
Get
|
||||
Return CType(Me("Service2"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Service2") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("EDKB08WS")> _
|
||||
Public Property Service3() As String
|
||||
Get
|
||||
Return CType(Me("Service3"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Service3") = value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
<Global.System.Configuration.UserScopedSettingAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Configuration.DefaultSettingValueAttribute("EDKB07WS")> _
|
||||
Public Property Service4() As String
|
||||
Get
|
||||
Return CType(Me("Service4"),String)
|
||||
End Get
|
||||
Set
|
||||
Me("Service4") = value
|
||||
End Set
|
||||
End Property
|
||||
End Class
|
||||
End Namespace
|
||||
|
||||
Namespace My
|
||||
|
||||
<Global.Microsoft.VisualBasic.HideModuleNameAttribute(), _
|
||||
Global.System.Diagnostics.DebuggerNonUserCodeAttribute(), _
|
||||
Global.System.Runtime.CompilerServices.CompilerGeneratedAttribute()> _
|
||||
Friend Module MySettingsProperty
|
||||
|
||||
<Global.System.ComponentModel.Design.HelpKeywordAttribute("My.Settings")> _
|
||||
Friend ReadOnly Property Settings() As Global.ServiceCheck.My.MySettings
|
||||
Get
|
||||
Return Global.ServiceCheck.My.MySettings.Default
|
||||
End Get
|
||||
End Property
|
||||
End Module
|
||||
End Namespace
|
||||
29
ServiceCheck/ServiceCheck/My Project/Settings.settings
Normal file
29
ServiceCheck/ServiceCheck/My Project/Settings.settings
Normal file
@@ -0,0 +1,29 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="My" GeneratedClassName="MySettings" UseMySettingsClassName="true">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
<Setting Name="Service1" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">EDKB12WS</Value>
|
||||
</Setting>
|
||||
<Setting Name="ConnectionString" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">data source=shu00;initial catalog=edoka;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29
|
||||
|
||||
</Value>
|
||||
</Setting>
|
||||
<Setting Name="NOKMail" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">stefan.hutter@tkb.ch</Value>
|
||||
</Setting>
|
||||
<Setting Name="Umgebung" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">INT</Value>
|
||||
</Setting>
|
||||
<Setting Name="Service2" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">EDKB04</Value>
|
||||
</Setting>
|
||||
<Setting Name="Service3" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">EDKB08WS</Value>
|
||||
</Setting>
|
||||
<Setting Name="Service4" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">EDKB07WS</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
117
ServiceCheck/ServiceCheck/ServiceCheck.vbproj
Normal file
117
ServiceCheck/ServiceCheck/ServiceCheck.vbproj
Normal file
@@ -0,0 +1,117 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="12.0" DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<Import Project="$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props" Condition="Exists('$(MSBuildExtensionsPath)\$(MSBuildToolsVersion)\Microsoft.Common.props')" />
|
||||
<PropertyGroup>
|
||||
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||
<Platform Condition=" '$(Platform)' == '' ">AnyCPU</Platform>
|
||||
<ProjectGuid>{CC8AB770-4825-4381-ACF9-58922AA2A643}</ProjectGuid>
|
||||
<OutputType>Exe</OutputType>
|
||||
<StartupObject>ServiceCheck.Module1</StartupObject>
|
||||
<RootNamespace>ServiceCheck</RootNamespace>
|
||||
<AssemblyName>ServiceCheck</AssemblyName>
|
||||
<FileAlignment>512</FileAlignment>
|
||||
<MyType>Console</MyType>
|
||||
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||
<TargetFrameworkProfile />
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugSymbols>true</DebugSymbols>
|
||||
<DebugType>full</DebugType>
|
||||
<DefineDebug>true</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<OutputPath>bin\Debug\</OutputPath>
|
||||
<DocumentationFile>ServiceCheck.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||
<DebugType>pdbonly</DebugType>
|
||||
<DefineDebug>false</DefineDebug>
|
||||
<DefineTrace>true</DefineTrace>
|
||||
<Optimize>true</Optimize>
|
||||
<OutputPath>bin\Release\</OutputPath>
|
||||
<DocumentationFile>ServiceCheck.xml</DocumentationFile>
|
||||
<NoWarn>42016,41999,42017,42018,42019,42032,42036,42020,42021,42022</NoWarn>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionExplicit>On</OptionExplicit>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionCompare>Binary</OptionCompare>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionStrict>Off</OptionStrict>
|
||||
</PropertyGroup>
|
||||
<PropertyGroup>
|
||||
<OptionInfer>On</OptionInfer>
|
||||
</PropertyGroup>
|
||||
<ItemGroup>
|
||||
<Reference Include="System" />
|
||||
<Reference Include="System.Data" />
|
||||
<Reference Include="System.Deployment" />
|
||||
<Reference Include="System.ServiceProcess" />
|
||||
<Reference Include="System.Xml" />
|
||||
<Reference Include="System.Core" />
|
||||
<Reference Include="System.Xml.Linq" />
|
||||
<Reference Include="System.Data.DataSetExtensions" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Import Include="Microsoft.VisualBasic" />
|
||||
<Import Include="System" />
|
||||
<Import Include="System.Collections" />
|
||||
<Import Include="System.Collections.Generic" />
|
||||
<Import Include="System.Data" />
|
||||
<Import Include="System.Diagnostics" />
|
||||
<Import Include="System.Linq" />
|
||||
<Import Include="System.Xml.Linq" />
|
||||
<Import Include="System.Threading.Tasks" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Compile Include="Module1.vb" />
|
||||
<Compile Include="My Project\AssemblyInfo.vb" />
|
||||
<Compile Include="My Project\Application.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Application.myapp</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Resources.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DesignTime>True</DesignTime>
|
||||
<DependentUpon>Resources.resx</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="My Project\Settings.Designer.vb">
|
||||
<AutoGen>True</AutoGen>
|
||||
<DependentUpon>Settings.settings</DependentUpon>
|
||||
<DesignTimeSharedInput>True</DesignTimeSharedInput>
|
||||
</Compile>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<EmbeddedResource Include="My Project\Resources.resx">
|
||||
<Generator>VbMyResourcesResXFileCodeGenerator</Generator>
|
||||
<LastGenOutput>Resources.Designer.vb</LastGenOutput>
|
||||
<CustomToolNamespace>My.Resources</CustomToolNamespace>
|
||||
<SubType>Designer</SubType>
|
||||
</EmbeddedResource>
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<None Include="My Project\Application.myapp">
|
||||
<Generator>MyApplicationCodeGenerator</Generator>
|
||||
<LastGenOutput>Application.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="My Project\Settings.settings">
|
||||
<Generator>SettingsSingleFileGenerator</Generator>
|
||||
<CustomToolNamespace>My</CustomToolNamespace>
|
||||
<LastGenOutput>Settings.Designer.vb</LastGenOutput>
|
||||
</None>
|
||||
<None Include="App.config" />
|
||||
</ItemGroup>
|
||||
<Import Project="$(MSBuildToolsPath)\Microsoft.VisualBasic.targets" />
|
||||
<!-- To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||
Other similar extension points exist, see Microsoft.Common.targets.
|
||||
<Target Name="BeforeBuild">
|
||||
</Target>
|
||||
<Target Name="AfterBuild">
|
||||
</Target>
|
||||
-->
|
||||
</Project>
|
||||
BIN
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.exe
Normal file
BIN
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.exe
Normal file
Binary file not shown.
38
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.exe.config
Normal file
38
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.exe.config
Normal file
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<section name="ServiceCheck.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
|
||||
</startup>
|
||||
<userSettings>
|
||||
<ServiceCheck.My.MySettings>
|
||||
<setting name="Service1" serializeAs="String">
|
||||
<value>EDKB12WS</value>
|
||||
</setting>
|
||||
<setting name="ConnectionString" serializeAs="String">
|
||||
<value>data source=shu00;initial catalog=edoka;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29
|
||||
|
||||
</value>
|
||||
</setting>
|
||||
<setting name="NOKMail" serializeAs="String">
|
||||
<value>stefan.hutter@tkb.ch</value>
|
||||
</setting>
|
||||
<setting name="Umgebung" serializeAs="String">
|
||||
<value>INT</value>
|
||||
</setting>
|
||||
<setting name="Service2" serializeAs="String">
|
||||
<value>EDKB04</value>
|
||||
</setting>
|
||||
<setting name="Service3" serializeAs="String">
|
||||
<value>EDKB08WS</value>
|
||||
</setting>
|
||||
<setting name="Service4" serializeAs="String">
|
||||
<value>EDKB07WS</value>
|
||||
</setting>
|
||||
</ServiceCheck.My.MySettings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
BIN
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.pdb
Normal file
BIN
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.pdb
Normal file
Binary file not shown.
BIN
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.vshost.exe
Normal file
BIN
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.vshost.exe
Normal file
Binary file not shown.
@@ -0,0 +1,38 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<configuration>
|
||||
<configSections>
|
||||
<sectionGroup name="userSettings" type="System.Configuration.UserSettingsGroup, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
|
||||
<section name="ServiceCheck.My.MySettings" type="System.Configuration.ClientSettingsSection, System, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" allowExeDefinition="MachineToLocalUser" requirePermission="false"/>
|
||||
</sectionGroup>
|
||||
</configSections>
|
||||
<startup>
|
||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
|
||||
</startup>
|
||||
<userSettings>
|
||||
<ServiceCheck.My.MySettings>
|
||||
<setting name="Service1" serializeAs="String">
|
||||
<value>EDKB12WS</value>
|
||||
</setting>
|
||||
<setting name="ConnectionString" serializeAs="String">
|
||||
<value>data source=shu00;initial catalog=edoka;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29
|
||||
|
||||
</value>
|
||||
</setting>
|
||||
<setting name="NOKMail" serializeAs="String">
|
||||
<value>stefan.hutter@tkb.ch</value>
|
||||
</setting>
|
||||
<setting name="Umgebung" serializeAs="String">
|
||||
<value>INT</value>
|
||||
</setting>
|
||||
<setting name="Service2" serializeAs="String">
|
||||
<value>EDKB04</value>
|
||||
</setting>
|
||||
<setting name="Service3" serializeAs="String">
|
||||
<value>EDKB08WS</value>
|
||||
</setting>
|
||||
<setting name="Service4" serializeAs="String">
|
||||
<value>EDKB07WS</value>
|
||||
</setting>
|
||||
</ServiceCheck.My.MySettings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
@@ -0,0 +1,11 @@
|
||||
<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
|
||||
<assembly xmlns="urn:schemas-microsoft-com:asm.v1" manifestVersion="1.0">
|
||||
<assemblyIdentity version="1.0.0.0" name="MyApplication.app"/>
|
||||
<trustInfo xmlns="urn:schemas-microsoft-com:asm.v2">
|
||||
<security>
|
||||
<requestedPrivileges xmlns="urn:schemas-microsoft-com:asm.v3">
|
||||
<requestedExecutionLevel level="asInvoker" uiAccess="false"/>
|
||||
</requestedPrivileges>
|
||||
</security>
|
||||
</trustInfo>
|
||||
</assembly>
|
||||
26
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.xml
Normal file
26
ServiceCheck/ServiceCheck/bin/Debug/ServiceCheck.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ServiceCheck
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ServiceCheck.My.Resources.Resources">
|
||||
<summary>
|
||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ServiceCheck.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ServiceCheck.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
3
ServiceCheck/ServiceCheck/bin/Debug/Services.txt
Normal file
3
ServiceCheck/ServiceCheck/bin/Debug/Services.txt
Normal file
@@ -0,0 +1,3 @@
|
||||
EDKB04
|
||||
EDKB08WS
|
||||
EDKB17
|
||||
1
ServiceCheck/ServiceCheck/bin/Debug/edokaconn.cfg
Normal file
1
ServiceCheck/ServiceCheck/bin/Debug/edokaconn.cfg
Normal file
@@ -0,0 +1 @@
|
||||
data source=shu00;initial catalog=edoka;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29
|
||||
BIN
ServiceCheck/ServiceCheck/bin/Debug/servicechecker.zip
Normal file
BIN
ServiceCheck/ServiceCheck/bin/Debug/servicechecker.zip
Normal file
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
ServiceCheck/ServiceCheck/obj/Debug/ServiceCheck.exe
Normal file
BIN
ServiceCheck/ServiceCheck/obj/Debug/ServiceCheck.exe
Normal file
Binary file not shown.
BIN
ServiceCheck/ServiceCheck/obj/Debug/ServiceCheck.pdb
Normal file
BIN
ServiceCheck/ServiceCheck/obj/Debug/ServiceCheck.pdb
Normal file
Binary file not shown.
@@ -0,0 +1,9 @@
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\bin\Debug\ServiceCheck.exe.config
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\bin\Debug\ServiceCheck.exe
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\bin\Debug\ServiceCheck.pdb
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\bin\Debug\ServiceCheck.xml
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\obj\Debug\ServiceCheck.Resources.resources
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\obj\Debug\ServiceCheck.vbproj.GenerateResource.Cache
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\obj\Debug\ServiceCheck.exe
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\obj\Debug\ServiceCheck.xml
|
||||
E:\Software-Projekte\EDOKA\tools\ServiceCheck\ServiceCheck\obj\Debug\ServiceCheck.pdb
|
||||
Binary file not shown.
26
ServiceCheck/ServiceCheck/obj/Debug/ServiceCheck.xml
Normal file
26
ServiceCheck/ServiceCheck/obj/Debug/ServiceCheck.xml
Normal file
@@ -0,0 +1,26 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>
|
||||
ServiceCheck
|
||||
</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:ServiceCheck.My.Resources.Resources">
|
||||
<summary>
|
||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ServiceCheck.My.Resources.Resources.ResourceManager">
|
||||
<summary>
|
||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="P:ServiceCheck.My.Resources.Resources.Culture">
|
||||
<summary>
|
||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
Binary file not shown.
Reference in New Issue
Block a user