parent
1cc7ed8893
commit
97ef665fd1
Binary file not shown.
@ -0,0 +1,373 @@
|
||||
Imports System
|
||||
Imports System.Data
|
||||
Imports System.Data.SqlTypes
|
||||
Imports System.Data.SqlClient
|
||||
|
||||
Namespace db
|
||||
Public Class clsMailTexte
|
||||
Inherits clsDBInteractionBase
|
||||
|
||||
#Region " Class Member Declarations "
|
||||
|
||||
Private m_bAktiv As SqlBoolean
|
||||
Private m_daErstellt_am, m_daMutiert_am As SqlDateTime
|
||||
Private m_iMutierer, m_iId As SqlInt32
|
||||
Private m_sInhalt, m_sBeschreibung As SqlString
|
||||
|
||||
#End Region
|
||||
|
||||
|
||||
Public Sub New()
|
||||
' // Nothing for now.
|
||||
End Sub
|
||||
|
||||
|
||||
Overrides Public Function Insert() As Boolean
|
||||
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
|
||||
scmCmdToExecute.CommandText = "dbo.[pr_MailTexte_Insert]"
|
||||
scmCmdToExecute.CommandType = CommandType.StoredProcedure
|
||||
|
||||
' // Use base class' connection object
|
||||
scmCmdToExecute.Connection = m_scoMainConnection
|
||||
|
||||
Try
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@iid", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iId))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@sBeschreibung", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBeschreibung))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@sInhalt", SqlDbType.VarChar, 2048, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sInhalt))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@daerstellt_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daErstellt_am))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@damutiert_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daMutiert_am))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@imutierer", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iMutierer))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@baktiv", SqlDbType.Bit, 1, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_bAktiv))
|
||||
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
|
||||
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Open connection.
|
||||
m_scoMainConnection.Open()
|
||||
Else
|
||||
If m_cpMainConnectionProvider.bIsTransactionPending Then
|
||||
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
|
||||
End If
|
||||
End If
|
||||
|
||||
' // Execute query.
|
||||
m_iRowsAffected = scmCmdToExecute.ExecuteNonQuery()
|
||||
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
|
||||
|
||||
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
|
||||
' // Throw error.
|
||||
Throw New Exception("Stored Procedure 'pr_MailTexte_Insert' reported the ErrorCode: " & m_iErrorCode.ToString())
|
||||
End If
|
||||
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
' // some error occured. Bubble it to caller and encapsulate Exception object
|
||||
Throw New Exception("clsMailTexte::Insert::Error occured.", ex)
|
||||
Finally
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Close connection.
|
||||
m_scoMainConnection.Close()
|
||||
End If
|
||||
scmCmdToExecute.Dispose()
|
||||
End Try
|
||||
End Function
|
||||
|
||||
|
||||
Overrides Public Function Update() As Boolean
|
||||
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
|
||||
scmCmdToExecute.CommandText = "dbo.[pr_MailTexte_Update]"
|
||||
scmCmdToExecute.CommandType = CommandType.StoredProcedure
|
||||
|
||||
' // Use base class' connection object
|
||||
scmCmdToExecute.Connection = m_scoMainConnection
|
||||
|
||||
Try
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@iid", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iId))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@sBeschreibung", SqlDbType.VarChar, 255, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sBeschreibung))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@sInhalt", SqlDbType.VarChar, 2048, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_sInhalt))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@daerstellt_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daErstellt_am))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@damutiert_am", SqlDbType.DateTime, 8, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_daMutiert_am))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@imutierer", SqlDbType.Int, 4, ParameterDirection.Input, True, 10, 0, "", DataRowVersion.Proposed, m_iMutierer))
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@baktiv", SqlDbType.Bit, 1, ParameterDirection.Input, True, 0, 0, "", DataRowVersion.Proposed, m_bAktiv))
|
||||
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
|
||||
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Open connection.
|
||||
m_scoMainConnection.Open()
|
||||
Else
|
||||
If m_cpMainConnectionProvider.bIsTransactionPending Then
|
||||
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
|
||||
End If
|
||||
End If
|
||||
|
||||
' // Execute query.
|
||||
m_iRowsAffected = scmCmdToExecute.ExecuteNonQuery()
|
||||
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
|
||||
|
||||
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
|
||||
' // Throw error.
|
||||
Throw New Exception("Stored Procedure 'pr_MailTexte_Update' reported the ErrorCode: " & m_iErrorCode.ToString())
|
||||
End If
|
||||
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
' // some error occured. Bubble it to caller and encapsulate Exception object
|
||||
Throw New Exception("clsMailTexte::Update::Error occured.", ex)
|
||||
Finally
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Close connection.
|
||||
m_scoMainConnection.Close()
|
||||
End If
|
||||
scmCmdToExecute.Dispose()
|
||||
End Try
|
||||
End Function
|
||||
|
||||
|
||||
Overrides Public Function Delete() As Boolean
|
||||
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
|
||||
scmCmdToExecute.CommandText = "dbo.[pr_MailTexte_Delete]"
|
||||
scmCmdToExecute.CommandType = CommandType.StoredProcedure
|
||||
|
||||
' // Use base class' connection object
|
||||
scmCmdToExecute.Connection = m_scoMainConnection
|
||||
|
||||
Try
|
||||
scmCmdToExecute.Parameters.Add(New SqlParameter("@iid", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iId))
|
||||
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
|
||||
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Open connection.
|
||||
m_scoMainConnection.Open()
|
||||
Else
|
||||
If m_cpMainConnectionProvider.bIsTransactionPending Then
|
||||
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
|
||||
End If
|
||||
End If
|
||||
|
||||
' // Execute query.
|
||||
m_iRowsAffected = scmCmdToExecute.ExecuteNonQuery()
|
||||
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
|
||||
|
||||
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
|
||||
' // Throw error.
|
||||
Throw New Exception("Stored Procedure 'pr_MailTexte_Delete' reported the ErrorCode: " & m_iErrorCode.ToString())
|
||||
End If
|
||||
|
||||
Return True
|
||||
Catch ex As Exception
|
||||
' // some error occured. Bubble it to caller and encapsulate Exception object
|
||||
Throw New Exception("clsMailTexte::Delete::Error occured.", ex)
|
||||
Finally
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Close connection.
|
||||
m_scoMainConnection.Close()
|
||||
End If
|
||||
scmCmdToExecute.Dispose()
|
||||
End Try
|
||||
End Function
|
||||
|
||||
|
||||
Overrides Public Function SelectOne() As DataTable
|
||||
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
|
||||
scmCmdToExecute.CommandText = "dbo.[pr_MailTexte_SelectOne]"
|
||||
scmCmdToExecute.CommandType = CommandType.StoredProcedure
|
||||
Dim dtToReturn As DataTable = new DataTable("MailTexte")
|
||||
Dim sdaAdapter As SqlDataAdapter = new SqlDataAdapter(scmCmdToExecute)
|
||||
|
||||
' // Use base class' connection object
|
||||
scmCmdToExecute.Connection = m_scoMainConnection
|
||||
|
||||
Try
|
||||
scmCmdToExecute.Parameters.Add(new SqlParameter("@iid", SqlDbType.Int, 4, ParameterDirection.Input, False, 10, 0, "", DataRowVersion.Proposed, m_iId))
|
||||
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
|
||||
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Open connection.
|
||||
m_scoMainConnection.Open()
|
||||
Else
|
||||
If m_cpMainConnectionProvider.bIsTransactionPending Then
|
||||
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
|
||||
End If
|
||||
End If
|
||||
|
||||
' // Execute query.
|
||||
sdaAdapter.Fill(dtToReturn)
|
||||
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
|
||||
|
||||
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
|
||||
' // Throw error.
|
||||
Throw New Exception("Stored Procedure 'pr_MailTexte_SelectOne' reported the ErrorCode: " & m_iErrorCode.ToString())
|
||||
End If
|
||||
|
||||
If dtToReturn.Rows.Count > 0 Then
|
||||
m_iId = New SqlInt32(CType(dtToReturn.Rows(0)("id"), Integer))
|
||||
If dtToReturn.Rows(0)("Beschreibung") Is System.DBNull.Value Then
|
||||
m_sBeschreibung = SqlString.Null
|
||||
Else
|
||||
m_sBeschreibung = New SqlString(CType(dtToReturn.Rows(0)("Beschreibung"), String))
|
||||
End If
|
||||
If dtToReturn.Rows(0)("Inhalt") Is System.DBNull.Value Then
|
||||
m_sInhalt = SqlString.Null
|
||||
Else
|
||||
m_sInhalt = New SqlString(CType(dtToReturn.Rows(0)("Inhalt"), String))
|
||||
End If
|
||||
If dtToReturn.Rows(0)("erstellt_am") Is System.DBNull.Value Then
|
||||
m_daErstellt_am = SqlDateTime.Null
|
||||
Else
|
||||
m_daErstellt_am = New SqlDateTime(CType(dtToReturn.Rows(0)("erstellt_am"), Date))
|
||||
End If
|
||||
If dtToReturn.Rows(0)("mutiert_am") Is System.DBNull.Value Then
|
||||
m_daMutiert_am = SqlDateTime.Null
|
||||
Else
|
||||
m_daMutiert_am = New SqlDateTime(CType(dtToReturn.Rows(0)("mutiert_am"), Date))
|
||||
End If
|
||||
If dtToReturn.Rows(0)("mutierer") Is System.DBNull.Value Then
|
||||
m_iMutierer = SqlInt32.Null
|
||||
Else
|
||||
m_iMutierer = New SqlInt32(CType(dtToReturn.Rows(0)("mutierer"), Integer))
|
||||
End If
|
||||
If dtToReturn.Rows(0)("aktiv") Is System.DBNull.Value Then
|
||||
m_bAktiv = SqlBoolean.Null
|
||||
Else
|
||||
m_bAktiv = New SqlBoolean(CType(dtToReturn.Rows(0)("aktiv"), Boolean))
|
||||
End If
|
||||
End If
|
||||
Return dtToReturn
|
||||
Catch ex As Exception
|
||||
' // some error occured. Bubble it to caller and encapsulate Exception object
|
||||
Throw New Exception("clsMailTexte::SelectOne::Error occured.", ex)
|
||||
Finally
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Close connection.
|
||||
m_scoMainConnection.Close()
|
||||
End If
|
||||
scmCmdToExecute.Dispose()
|
||||
sdaAdapter.Dispose()
|
||||
End Try
|
||||
End Function
|
||||
|
||||
|
||||
Overrides Public Function SelectAll() As DataTable
|
||||
Dim scmCmdToExecute As SqlCommand = New SqlCommand()
|
||||
scmCmdToExecute.CommandText = "dbo.[pr_MailTexte_SelectAll]"
|
||||
scmCmdToExecute.CommandType = CommandType.StoredProcedure
|
||||
Dim dtToReturn As DataTable = new DataTable("MailTexte")
|
||||
Dim sdaAdapter As SqlDataAdapter = new SqlDataAdapter(scmCmdToExecute)
|
||||
|
||||
' // Use base class' connection object
|
||||
scmCmdToExecute.Connection = m_scoMainConnection
|
||||
|
||||
Try
|
||||
scmCmdToExecute.Parameters.Add(new SqlParameter("@iErrorCode", SqlDbType.Int, 4, ParameterDirection.Output, True, 10, 0, "", DataRowVersion.Proposed, m_iErrorCode))
|
||||
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Open connection.
|
||||
m_scoMainConnection.Open()
|
||||
Else
|
||||
If m_cpMainConnectionProvider.bIsTransactionPending Then
|
||||
scmCmdToExecute.Transaction = m_cpMainConnectionProvider.stCurrentTransaction
|
||||
End If
|
||||
End If
|
||||
|
||||
' // Execute query.
|
||||
sdaAdapter.Fill(dtToReturn)
|
||||
m_iErrorCode = New SqlInt32(CType(scmCmdToExecute.Parameters.Item("@iErrorCode").Value, SqlInt32))
|
||||
|
||||
If Not m_iErrorCode.Equals(New SqlInt32(LLBLError.AllOk)) Then
|
||||
' // Throw error.
|
||||
Throw New Exception("Stored Procedure 'pr_MailTexte_SelectAll' reported the ErrorCode: " & m_iErrorCode.ToString())
|
||||
End If
|
||||
|
||||
Return dtToReturn
|
||||
Catch ex As Exception
|
||||
' // some error occured. Bubble it to caller and encapsulate Exception object
|
||||
Throw New Exception("clsMailTexte::SelectAll::Error occured.", ex)
|
||||
Finally
|
||||
If m_bMainConnectionIsCreatedLocal Then
|
||||
' // Close connection.
|
||||
m_scoMainConnection.Close()
|
||||
End If
|
||||
scmCmdToExecute.Dispose()
|
||||
sdaAdapter.Dispose()
|
||||
End Try
|
||||
End Function
|
||||
|
||||
|
||||
#Region " Class Property Declarations "
|
||||
|
||||
Public Property [iId]() As SqlInt32
|
||||
Get
|
||||
Return m_iId
|
||||
End Get
|
||||
Set(ByVal Value As SqlInt32)
|
||||
Dim iIdTmp As SqlInt32 = Value
|
||||
If iIdTmp.IsNull Then
|
||||
Throw New ArgumentOutOfRangeException("iId", "iId can't be NULL")
|
||||
End If
|
||||
m_iId = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Public Property [sBeschreibung]() As SqlString
|
||||
Get
|
||||
Return m_sBeschreibung
|
||||
End Get
|
||||
Set(ByVal Value As SqlString)
|
||||
m_sBeschreibung = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Public Property [sInhalt]() As SqlString
|
||||
Get
|
||||
Return m_sInhalt
|
||||
End Get
|
||||
Set(ByVal Value As SqlString)
|
||||
m_sInhalt = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Public Property [daErstellt_am]() As SqlDateTime
|
||||
Get
|
||||
Return m_daErstellt_am
|
||||
End Get
|
||||
Set(ByVal Value As SqlDateTime)
|
||||
m_daErstellt_am = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Public Property [daMutiert_am]() As SqlDateTime
|
||||
Get
|
||||
Return m_daMutiert_am
|
||||
End Get
|
||||
Set(ByVal Value As SqlDateTime)
|
||||
m_daMutiert_am = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Public Property [iMutierer]() As SqlInt32
|
||||
Get
|
||||
Return m_iMutierer
|
||||
End Get
|
||||
Set(ByVal Value As SqlInt32)
|
||||
m_iMutierer = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
|
||||
Public Property [bAktiv]() As SqlBoolean
|
||||
Get
|
||||
Return m_bAktiv
|
||||
End Get
|
||||
Set(ByVal Value As SqlBoolean)
|
||||
m_bAktiv = Value
|
||||
End Set
|
||||
End Property
|
||||
|
||||
#End Region
|
||||
|
||||
End Class
|
||||
End Namespace
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
4dfae4da81158e7917b471372ff7162939d77c89
|
||||
15008e5645a6671b21342fa585499150a897e195
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,51 @@
|
||||
<?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="BeAUserSync.Properties.Settings" 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.7.2" />
|
||||
</startup>
|
||||
<appSettings>
|
||||
<add key="LDAPPassword" value="" />
|
||||
<add key="LDAPPath" value="LDAP://ldap.forumsys.com:389" />
|
||||
<add key="LDAPUser" value="" />
|
||||
<add key="LDAPDomain" value="" />
|
||||
</appSettings>
|
||||
<userSettings>
|
||||
<BeAUserSync.Properties.Settings>
|
||||
<setting name="UserName" serializeAs="String">
|
||||
<value>cn=read-only-admin,dc=example,dc=com</value>
|
||||
</setting>
|
||||
<setting name="Password" serializeAs="String">
|
||||
<value>password</value>
|
||||
</setting>
|
||||
<setting name="AutheticationType" serializeAs="String">
|
||||
<value>16</value>
|
||||
</setting>
|
||||
<setting name="BaseDN" serializeAs="String">
|
||||
<value>OU=Prd_Personal, OU=Prd_User,OU=Prd_Org, OU=Prd, DC=tgcorp,DC=ch</value>
|
||||
</setting>
|
||||
<setting name="Filter" serializeAs="String">
|
||||
<value>(objectClass=person)</value>
|
||||
</setting>
|
||||
<setting name="emailattribute" serializeAs="String">
|
||||
<value>mail</value>
|
||||
</setting>
|
||||
<setting name="LDAPServer" serializeAs="String">
|
||||
<value>LDAP://ldap.forumsys.com:389/dc=example,dc=com</value>
|
||||
</setting>
|
||||
<setting name="LoginAttribute" serializeAs="String">
|
||||
<value>uid</value>
|
||||
</setting>
|
||||
<setting name="connectionstring" serializeAs="String">
|
||||
<value>data source=shu00;initial catalog=bea_prod;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29</value>
|
||||
</setting>
|
||||
<setting name="Dataselect" serializeAs="String">
|
||||
<value>2</value>
|
||||
</setting>
|
||||
</BeAUserSync.Properties.Settings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
@ -0,0 +1,6 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<Project ToolsVersion="Current" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||
<PropertyGroup Condition="'$(Configuration)|$(Platform)' == 'Debug|AnyCPU'">
|
||||
<StartArguments>NoAD</StartArguments>
|
||||
</PropertyGroup>
|
||||
</Project>
|
||||
@ -0,0 +1,36 @@
|
||||
<?xml version='1.0' encoding='utf-8'?>
|
||||
<SettingsFile xmlns="http://schemas.microsoft.com/VisualStudio/2004/01/settings" CurrentProfile="(Default)" GeneratedClassNamespace="BeAUserSync.Properties" GeneratedClassName="Settings">
|
||||
<Profiles />
|
||||
<Settings>
|
||||
<Setting Name="UserName" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">cn=read-only-admin,dc=example,dc=com</Value>
|
||||
</Setting>
|
||||
<Setting Name="Password" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">password</Value>
|
||||
</Setting>
|
||||
<Setting Name="AutheticationType" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">16</Value>
|
||||
</Setting>
|
||||
<Setting Name="BaseDN" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">OU=Prd_Personal, OU=Prd_User,OU=Prd_Org, OU=Prd, DC=tgcorp,DC=ch</Value>
|
||||
</Setting>
|
||||
<Setting Name="Filter" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">(objectClass=person)</Value>
|
||||
</Setting>
|
||||
<Setting Name="emailattribute" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">mail</Value>
|
||||
</Setting>
|
||||
<Setting Name="LDAPServer" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">LDAP://ldap.forumsys.com:389/dc=example,dc=com</Value>
|
||||
</Setting>
|
||||
<Setting Name="LoginAttribute" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">uid</Value>
|
||||
</Setting>
|
||||
<Setting Name="connectionstring" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">data source=shu00;initial catalog=bea_prod;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29</Value>
|
||||
</Setting>
|
||||
<Setting Name="Dataselect" Type="System.String" Scope="User">
|
||||
<Value Profile="(Default)">2</Value>
|
||||
</Setting>
|
||||
</Settings>
|
||||
</SettingsFile>
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,51 @@
|
||||
<?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="BeAUserSync.Properties.Settings" 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.7.2" />
|
||||
</startup>
|
||||
<appSettings>
|
||||
<add key="LDAPPassword" value="" />
|
||||
<add key="LDAPPath" value="LDAP://ldap.forumsys.com:389" />
|
||||
<add key="LDAPUser" value="" />
|
||||
<add key="LDAPDomain" value="" />
|
||||
</appSettings>
|
||||
<userSettings>
|
||||
<BeAUserSync.Properties.Settings>
|
||||
<setting name="UserName" serializeAs="String">
|
||||
<value>cn=read-only-admin,dc=example,dc=com</value>
|
||||
</setting>
|
||||
<setting name="Password" serializeAs="String">
|
||||
<value>password</value>
|
||||
</setting>
|
||||
<setting name="AutheticationType" serializeAs="String">
|
||||
<value>16</value>
|
||||
</setting>
|
||||
<setting name="BaseDN" serializeAs="String">
|
||||
<value>OU=Prd_Personal, OU=Prd_User,OU=Prd_Org, OU=Prd, DC=tgcorp,DC=ch</value>
|
||||
</setting>
|
||||
<setting name="Filter" serializeAs="String">
|
||||
<value>(objectClass=person)</value>
|
||||
</setting>
|
||||
<setting name="emailattribute" serializeAs="String">
|
||||
<value>mail</value>
|
||||
</setting>
|
||||
<setting name="LDAPServer" serializeAs="String">
|
||||
<value>LDAP://ldap.forumsys.com:389/dc=example,dc=com</value>
|
||||
</setting>
|
||||
<setting name="LoginAttribute" serializeAs="String">
|
||||
<value>uid</value>
|
||||
</setting>
|
||||
<setting name="connectionstring" serializeAs="String">
|
||||
<value>data source=shu00;initial catalog=bea_prod;integrated security=SSPI;persist security info=false;workstation id=;packet size=4096;user id=sa;password=*shu29</value>
|
||||
</setting>
|
||||
<setting name="Dataselect" serializeAs="String">
|
||||
<value>2</value>
|
||||
</setting>
|
||||
</BeAUserSync.Properties.Settings>
|
||||
</userSettings>
|
||||
</configuration>
|
||||
Binary file not shown.
Binary file not shown.
@ -0,0 +1,708 @@
|
||||
<?xml version="1.0"?>
|
||||
<doc>
|
||||
<assembly>
|
||||
<name>Microsoft.Extensions.Logging.Abstractions</name>
|
||||
</assembly>
|
||||
<members>
|
||||
<member name="T:Microsoft.Extensions.Logging.IExternalScopeProvider">
|
||||
<summary>
|
||||
Represents a storage of common scope data.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
|
||||
<summary>
|
||||
Executes callback for each currently active scope objects in order of creation.
|
||||
All callbacks are guaranteed to be called inline from this method.
|
||||
</summary>
|
||||
<param name="callback">The callback to be executed for every scope object</param>
|
||||
<param name="state">The state object to be passed into the callback</param>
|
||||
<typeparam name="TState"></typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.IExternalScopeProvider.Push(System.Object)">
|
||||
<summary>
|
||||
Adds scope object to the list
|
||||
</summary>
|
||||
<param name="state">The scope object</param>
|
||||
<returns>The <see cref="T:System.IDisposable"/> token that removes scope on dispose.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILogger">
|
||||
<summary>
|
||||
Represents a type used to perform logging.
|
||||
</summary>
|
||||
<remarks>Aggregates most logging patterns to a single method.</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
|
||||
<summary>
|
||||
Writes a log entry.
|
||||
</summary>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="eventId">Id of the event.</param>
|
||||
<param name="state">The entry to be written. Can be also an object.</param>
|
||||
<param name="exception">The exception related to this entry.</param>
|
||||
<param name="formatter">Function to create a <c>string</c> message of the <paramref name="state"/> and <paramref name="exception"/>.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
|
||||
<summary>
|
||||
Checks if the given <paramref name="logLevel"/> is enabled.
|
||||
</summary>
|
||||
<param name="logLevel">level to be checked.</param>
|
||||
<returns><c>true</c> if enabled.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILogger.BeginScope``1(``0)">
|
||||
<summary>
|
||||
Begins a logical operation scope.
|
||||
</summary>
|
||||
<param name="state">The identifier for the scope.</param>
|
||||
<returns>An IDisposable that ends the logical operation scope on dispose.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILoggerFactory">
|
||||
<summary>
|
||||
Represents a type used to configure the logging system and create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger"/> from
|
||||
the registered <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/>s.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILoggerFactory.CreateLogger(System.String)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance.
|
||||
</summary>
|
||||
<param name="categoryName">The category name for messages produced by the logger.</param>
|
||||
<returns>The <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
|
||||
<summary>
|
||||
Adds an <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> to the logging system.
|
||||
</summary>
|
||||
<param name="provider">The <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/>.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILogger`1">
|
||||
<summary>
|
||||
A generic interface for logging where the category name is derived from the specified
|
||||
<typeparamref name="TCategoryName"/> type name.
|
||||
Generally used to enable activation of a named <see cref="T:Microsoft.Extensions.Logging.ILogger"/> from dependency injection.
|
||||
</summary>
|
||||
<typeparam name="TCategoryName">The type who's name is used for the logger category name.</typeparam>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ILoggerProvider">
|
||||
<summary>
|
||||
Represents a type that can create instances of <see cref="T:Microsoft.Extensions.Logging.ILogger"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ILoggerProvider.CreateLogger(System.String)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance.
|
||||
</summary>
|
||||
<param name="categoryName">The category name for messages produced by the logger.</param>
|
||||
<returns></returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Internal.FormattedLogValues">
|
||||
<summary>
|
||||
LogValues to enable formatting options supported by <see cref="M:string.Format"/>.
|
||||
This also enables using {NamedformatItem} in the format string.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Internal.LogValuesFormatter">
|
||||
<summary>
|
||||
Formatter to convert the named format items like {NamedformatItem} to <see cref="M:string.Format"/> format.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.Internal.NullScope">
|
||||
<summary>
|
||||
An empty scope without any logic
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.Internal.NullScope.Dispose">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger">
|
||||
<summary>
|
||||
Minimalistic logger that does nothing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.BeginScope``1(``0)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory">
|
||||
<summary>
|
||||
An <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/> used to create instance of
|
||||
<see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> that logs nothing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.CreateLogger(System.String)">
|
||||
<inheritdoc />
|
||||
<remarks>
|
||||
This returns a <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/> instance which logs nothing.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerFactory.AddProvider(Microsoft.Extensions.Logging.ILoggerProvider)">
|
||||
<inheritdoc />
|
||||
<remarks>
|
||||
This method ignores the parameter and does nothing.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLogger`1">
|
||||
<summary>
|
||||
Minimalistic logger that does nothing.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.BeginScope``1(``0)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.Log``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,``0,System.Exception,System.Func{``0,System.Exception,System.String})">
|
||||
<inheritdoc />
|
||||
<remarks>
|
||||
This method ignores the parameters and does nothing.
|
||||
</remarks>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLogger`1.IsEnabled(Microsoft.Extensions.Logging.LogLevel)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider">
|
||||
<summary>
|
||||
Provider for the <see cref="T:Microsoft.Extensions.Logging.Abstractions.NullLogger"/>.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.CreateLogger(System.String)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.NullLoggerProvider.Dispose">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="P:Microsoft.Extensions.Logging.Abstractions.Resource.UnexpectedNumberOfNamedParameters">
|
||||
<summary>
|
||||
The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Abstractions.Resource.FormatUnexpectedNumberOfNamedParameters(System.Object,System.Object,System.Object)">
|
||||
<summary>
|
||||
The format string '{0}' does not have the expected number of named parameters. Expected {1} parameter(s) but found {2} parameter(s).
|
||||
</summary>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.ISupportExternalScope">
|
||||
<summary>
|
||||
Represents a <see cref="T:Microsoft.Extensions.Logging.ILoggerProvider"/> that is able to consume external scope information.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.ISupportExternalScope.SetScopeProvider(Microsoft.Extensions.Logging.IExternalScopeProvider)">
|
||||
<summary>
|
||||
Sets external scope information source for logger provider.
|
||||
</summary>
|
||||
<param name="scopeProvider"></param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerExtensions">
|
||||
<summary>
|
||||
ILogger extension methods for common scenarios.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogDebug(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a debug log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogDebug("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogTrace(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a trace log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogTrace("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogInformation(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an informational log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogInformation("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogWarning(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a warning log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogWarning("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogError(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes an error log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogError("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical(0, exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical(0, "Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical(exception, "Error while processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.LogCritical(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a critical log message.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="message">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<example>logger.LogCritical("Processing request from {Address}", address)</example>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.Log(Microsoft.Extensions.Logging.ILogger,Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.Exception,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats and writes a log message at the specified log level.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to write to.</param>
|
||||
<param name="logLevel">Entry will be written on this level.</param>
|
||||
<param name="eventId">The event id associated with the log.</param>
|
||||
<param name="exception">The exception to log.</param>
|
||||
<param name="message">Format string of the log message.</param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExtensions.BeginScope(Microsoft.Extensions.Logging.ILogger,System.String,System.Object[])">
|
||||
<summary>
|
||||
Formats the message and creates a scope.
|
||||
</summary>
|
||||
<param name="logger">The <see cref="T:Microsoft.Extensions.Logging.ILogger"/> to create the scope in.</param>
|
||||
<param name="messageFormat">Format string of the log message in message template format. Example: <code>"User {User} logged in from {Address}"</code></param>
|
||||
<param name="args">An object array that contains zero or more objects to format.</param>
|
||||
<returns>A disposable scope object. Can be null.</returns>
|
||||
<example>
|
||||
using(logger.BeginScope("Processing request from {Address}", address))
|
||||
{
|
||||
}
|
||||
</example>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerExternalScopeProvider">
|
||||
<summary>
|
||||
Default implemenation of <see cref="T:Microsoft.Extensions.Logging.IExternalScopeProvider"/>
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.ForEachScope``1(System.Action{System.Object,``0},``0)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerExternalScopeProvider.Push(System.Object)">
|
||||
<inheritdoc />
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerFactoryExtensions">
|
||||
<summary>
|
||||
ILoggerFactory extension methods for common scenarios.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger``1(Microsoft.Extensions.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Creates a new ILogger instance using the full name of the given type.
|
||||
</summary>
|
||||
<typeparam name="T">The type.</typeparam>
|
||||
<param name="factory">The factory.</param>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerFactoryExtensions.CreateLogger(Microsoft.Extensions.Logging.ILoggerFactory,System.Type)">
|
||||
<summary>
|
||||
Creates a new ILogger instance using the full name of the given type.
|
||||
</summary>
|
||||
<param name="factory">The factory.</param>
|
||||
<param name="type">The type.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LoggerMessage">
|
||||
<summary>
|
||||
Creates delegates which can be later cached to log messages in a performant way.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``1(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``2(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.DefineScope``3(System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked to create a log scope.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log scope.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``1(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``2(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``3(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``4(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``5(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.LoggerMessage.Define``6(Microsoft.Extensions.Logging.LogLevel,Microsoft.Extensions.Logging.EventId,System.String)">
|
||||
<summary>
|
||||
Creates a delegate which can be invoked for logging a message.
|
||||
</summary>
|
||||
<typeparam name="T1">The type of the first parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T2">The type of the second parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T3">The type of the third parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T4">The type of the fourth parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T5">The type of the fifth parameter passed to the named format string.</typeparam>
|
||||
<typeparam name="T6">The type of the sixth parameter passed to the named format string.</typeparam>
|
||||
<param name="logLevel">The <see cref="T:Microsoft.Extensions.Logging.LogLevel"/></param>
|
||||
<param name="eventId">The event id</param>
|
||||
<param name="formatString">The named format string</param>
|
||||
<returns>A delegate which when invoked creates a log message.</returns>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.Logger`1">
|
||||
<summary>
|
||||
Delegates to a new <see cref="T:Microsoft.Extensions.Logging.ILogger"/> instance using the full name of the given type, created by the
|
||||
provided <see cref="T:Microsoft.Extensions.Logging.ILoggerFactory"/>.
|
||||
</summary>
|
||||
<typeparam name="T">The type.</typeparam>
|
||||
</member>
|
||||
<member name="M:Microsoft.Extensions.Logging.Logger`1.#ctor(Microsoft.Extensions.Logging.ILoggerFactory)">
|
||||
<summary>
|
||||
Creates a new <see cref="T:Microsoft.Extensions.Logging.Logger`1"/>.
|
||||
</summary>
|
||||
<param name="factory">The factory.</param>
|
||||
</member>
|
||||
<member name="T:Microsoft.Extensions.Logging.LogLevel">
|
||||
<summary>
|
||||
Defines logging severity levels.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Trace">
|
||||
<summary>
|
||||
Logs that contain the most detailed messages. These messages may contain sensitive application data.
|
||||
These messages are disabled by default and should never be enabled in a production environment.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Debug">
|
||||
<summary>
|
||||
Logs that are used for interactive investigation during development. These logs should primarily contain
|
||||
information useful for debugging and have no long-term value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Information">
|
||||
<summary>
|
||||
Logs that track the general flow of the application. These logs should have long-term value.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Warning">
|
||||
<summary>
|
||||
Logs that highlight an abnormal or unexpected event in the application flow, but do not otherwise cause the
|
||||
application execution to stop.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Error">
|
||||
<summary>
|
||||
Logs that highlight when the current flow of execution is stopped due to a failure. These should indicate a
|
||||
failure in the current activity, not an application-wide failure.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.Critical">
|
||||
<summary>
|
||||
Logs that describe an unrecoverable application or system crash, or a catastrophic failure that requires
|
||||
immediate attention.
|
||||
</summary>
|
||||
</member>
|
||||
<member name="F:Microsoft.Extensions.Logging.LogLevel.None">
|
||||
<summary>
|
||||
Not used for writing log messages. Specifies that a logging category should not write any messages.
|
||||
</summary>
|
||||
</member>
|
||||
</members>
|
||||
</doc>
|
||||
@ -0,0 +1,4 @@
|
||||
// <autogenerated />
|
||||
using System;
|
||||
using System.Reflection;
|
||||
[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")]
|
||||
@ -0,0 +1 @@
|
||||
fa02f8a1ba8eaa6d3ca38776ae55054fa2212873
|
||||
@ -0,0 +1,10 @@
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\obj\Debug\BeAUserSync.csproj.CoreCompileInputs.cache
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\bin\Debug\BeAUserSync.exe.config
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\bin\Debug\BeAUserSync.exe
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\bin\Debug\BeAUserSync.pdb
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\obj\Debug\BeAUserSync.exe
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\obj\Debug\BeAUserSync.pdb
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\bin\Debug\Microsoft.Extensions.Logging.Abstractions.dll
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\bin\Debug\Microsoft.Extensions.Logging.Abstractions.xml
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\obj\Debug\BeAUserSync.csproj.CopyComplete
|
||||
E:\Software-Projekte\TKBDiverse\BEA\BeAUserSync\obj\Debug\BeAUserSync.csprojAssemblyReference.cache
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -0,0 +1,12 @@
|
||||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<packages>
|
||||
<package id="Galactic.ActiveDirectory" version="1.3.0.499" targetFramework="net472" />
|
||||
<package id="Galactic.Configuration" version="1.3.0.499" targetFramework="net472" />
|
||||
<package id="Galactic.Cryptography" version="1.3.0.499" targetFramework="net472" />
|
||||
<package id="Galactic.EventLog" version="1.3.0.499" targetFramework="net472" />
|
||||
<package id="Galactic.FileSystem" version="1.3.0.499" targetFramework="net472" />
|
||||
<package id="Galactic.LDAP" version="1.3.0.499" targetFramework="net472" />
|
||||
<package id="Horseshoe.NET" version="1.2.1" targetFramework="net472" />
|
||||
<package id="Horseshoe.NET.ActiveDirectory" version="1.2.1" targetFramework="net472" />
|
||||
<package id="Microsoft.Extensions.Logging.Abstractions" version="2.2.0" targetFramework="net472" />
|
||||
</packages>
|
||||
@ -0,0 +1,47 @@
|
||||
|
||||
INSERT [dbo].[Auswertung] ([AuswertungNr], [Bezeichnung], [Aktiv], [Erstellt_am], [Mutiert_am], [Mutierer], [Report], [Filename], [Excel_Report], [SQL], [SQLType], [Beschreibung], [Connectionstring_Subreport]) VALUES (20, N'E-Mail-Log', 1, CAST(N'2021-05-17T19:44:33.317' AS DateTime), CAST(N'2021-05-17T19:47:32.907' AS DateTime), 1, 0, N' ', 1, N'select top 1000 * from Maillog order by id desc', N'SQL', N'E-Mail-Log', N'')
|
||||
GO
|
||||
INSERT [dbo].[Auswertung] ([AuswertungNr], [Bezeichnung], [Aktiv], [Erstellt_am], [Mutiert_am], [Mutierer], [Report], [Filename], [Excel_Report], [SQL], [SQLType], [Beschreibung], [Connectionstring_Subreport]) VALUES (21, N'AD-Log', 1, CAST(N'2021-05-17T19:45:06.690' AS DateTime), CAST(N'2021-05-17T19:47:37.967' AS DateTime), 1, 0, N'', 1, N'select top 1000 * from adlog order by id desc', N'SQL', N'AD-Abgleich-Log', NULL)
|
||||
GO
|
||||
INSERT [dbo].[MailTexte] ([id], [Beschreibung], [Betreff], [Inhalt], [erstellt_am], [mutiert_am], [mutierer], [aktiv]) VALUES (2, N'Mail 14 Tage vor Ablauf Temp. Berechtgung', N'Temporäre Berechtigung läuft in 14 Tagen ab', N'Guten Tag
|
||||
|
||||
Du bist verantwortlich für die temporäre Berechtigung "@Fnktstelle" für @Name. Die temporäre Berechtigung läuft am @Termin ab.
|
||||
|
||||
Ist diese temporäre Berechtigung noch länger nötig? Bitte erfasse einen entsprechenden Auftrag im TicketXPert (Ticketschema: WPI Auftrag). Wenn keine Verlängerung via Ticket beantragt wird, wird diese Berechtigung nach Ablauf gelöscht.
|
||||
|
||||
Besten Dank und Grüsse,
|
||||
IT Service Desk
|
||||
|
||||
Dies ist eine automatisch generierte Mail, bitte antworte nicht auf diese Nachricht. Nachrichten in diesem Postfach werden nicht bearbeitet.', CAST(N'2021-05-17T16:58:35.090' AS DateTime), CAST(N'2021-05-19T13:35:39.970' AS DateTime), 1, 1)
|
||||
GO
|
||||
INSERT [dbo].[MailTexte] ([id], [Beschreibung], [Betreff], [Inhalt], [erstellt_am], [mutiert_am], [mutierer], [aktiv]) VALUES (3, N'Mail 5 Tage vor Ablauf Temp. Berechtigun', N'Erneute Erinnerung - temporäre Berechtigung läuft demnächst ab', N'Guten Tag
|
||||
|
||||
Du bist verantwortlich für die temporäre Berechtigung "@Fnktstelle" für @Name. Die temporäre Berechtigung läuft am @Termin ab.
|
||||
|
||||
Ist diese temporäre Berechtigung noch länger nötig? Bitte erfasse einen entsprechenden Auftrag im TicketXPert (Ticketschema: WPI Auftrag). Wenn keine Verlängerung via Ticket beantragt wird, wird diese Berechtigung nach Ablauf gelöscht.
|
||||
|
||||
Besten Dank und Grüsse,
|
||||
IT Service Desk
|
||||
|
||||
Dies ist eine automatisch generierte Mail, bitte antworte nicht auf diese Nachricht. Nachrichten in diesem Postfach werden nicht bearbeitet.', CAST(N'2021-05-17T16:58:47.033' AS DateTime), CAST(N'2021-05-19T13:35:48.657' AS DateTime), 1, 1)
|
||||
GO
|
||||
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (260, N'mailtexte', N'id', N'ID', 1, 0, 50, 1, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (261, N'mailtexte', N'beschreibung', N'Beschreibung', 0, 0, 200, 2, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (262, N'mailtexte', N'inhalt', N'Inhalt', 0, 0, 300, 4, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (263, N'mailtexte', N'erstellt_am', N'Erstellt am', 1, 0, 80, 5, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (264, N'mailtexte', N'mutiert_am', N'Mutiert am', 1, 0, 80, 6, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (265, N'mailtexte', N'aktiv', N'Aktiv', 0, 1, 50, 7, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (266, N'mailtexte', N'mutierer', N'Mut.', 1, 0, 50, 8, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
INSERT [dbo].[spalten] ([eintragnr], [tabelle], [tabellenspalte], [spalte], [Readonly], [alsHacken], [Breite], [Reihenfolge], [tiptext], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [mandantnr], [NumberFormat]) VALUES (267, N'mailtexte', N'betreff', N'Betreff', 0, 0, 150, 3, N'', 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, 1, NULL)
|
||||
GO
|
||||
|
||||
INSERT [dbo].[sysadminfunktion] ([sysadminfnktnr], [bezeichnung], [ParentID], [Sort], [ImageIndex], [ImageIndexOpen], [ftop], [fleft], [fwidth], [fheight], [beschreibung], [mandantnr], [sprache], [aktiv], [erstellt_am], [mutiert_am], [mutierer], [Domaintable], [KeyFields]) VALUES (30, N'Mail-Texte', 2, 26, 3, 3, 0, 0, 1000, 800, N'', 1, 1, 1, CAST(N'2021-05-17T00:00:00.000' AS DateTime), CAST(N'2021-05-17T00:00:00.000' AS DateTime), 1, N'mailtexte', N'')
|
||||
GO
|
||||
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
80f28b5de5e450653f6d52ba6c9254e4e0b6b37f
|
||||
e9d11d344ded2227a28f82b050c968387ed86e2c
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +1 @@
|
||||
d341cecee8c1a4f049ef9330273216c242dc4490
|
||||
e8e40c6467e64051916291f66037b940a5b6d021
|
||||
|
||||
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in new issue