add setup project
This commit is contained in:
parent
fbacfdaaad
commit
3c40bd7528
9
.gitignore
vendored
9
.gitignore
vendored
@ -2,5 +2,10 @@
|
|||||||
# Diese .gitignore-Datei wurde von Microsoft(R) Visual Studio automatisch erstellt.
|
# Diese .gitignore-Datei wurde von Microsoft(R) Visual Studio automatisch erstellt.
|
||||||
################################################################################
|
################################################################################
|
||||||
|
|
||||||
/WIDigConsoleApp/bin/Debug
|
/WIDigConsoleApp/bin
|
||||||
/.vs/WIDigConsoleApp/v15/Server/sqlite3
|
/WIDigConsoleApp/obj
|
||||||
|
/WIDigForm/bin
|
||||||
|
/WIDigForm/obj
|
||||||
|
/SetupWIX/bin
|
||||||
|
/SetupWIX/obj
|
||||||
|
/.vs
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
21
SetupWIX/Config.wxi
Normal file
21
SetupWIX/Config.wxi
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Include>
|
||||||
|
<!-- Der Name der Haupt-EXE -->
|
||||||
|
<?define ProgramName="WIDigConsoleApp"?>
|
||||||
|
<!-- Der Volle Name des Programms -->
|
||||||
|
<?define ProductName="Windream Indexer von Digital Data"?>
|
||||||
|
<!-- Der Hersteller des Programms -->
|
||||||
|
<?define Manufacturer="Digital Data"?>
|
||||||
|
<!-- Kurze Beschreibung des Programms (optional) -->
|
||||||
|
<?define Description="Beschreibung des Programms"?>
|
||||||
|
<!-- Kurzer Kommentar zum Programm (optional) -->
|
||||||
|
<?define Comments="Kommentar wie Copyright-Hinweis"?>
|
||||||
|
<!--
|
||||||
|
UPGRADE CODE
|
||||||
|
|
||||||
|
Sorgt dafür, dass Programm-Updates mit dem Installer
|
||||||
|
die alte Version ersetzen. Darf sich nicht mehr ändern,
|
||||||
|
wenn einmal festgelegt.
|
||||||
|
-->
|
||||||
|
<?define UpgradeCode="b5f2b6f9-c768-49f9-8440-06579af5203e"?>
|
||||||
|
</Include>
|
||||||
192
SetupWIX/Product.wxs
Normal file
192
SetupWIX/Product.wxs
Normal file
@ -0,0 +1,192 @@
|
|||||||
|
<?include Config.wxi?>
|
||||||
|
|
||||||
|
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||||
|
<Product Id="*" Name="$(var.ProductName)" Language="1031" Codepage="1252" Version="$(var.ProductVersion)" Manufacturer="$(var.Manufacturer)" UpgradeCode="$(var.UpgradeCode)">
|
||||||
|
<Package
|
||||||
|
Id="*"
|
||||||
|
Keywords="Installer"
|
||||||
|
Description="$(var.Description)"
|
||||||
|
Comments="$(var.Comments)"
|
||||||
|
Manufacturer="$(var.Manufacturer)"
|
||||||
|
InstallerVersion="100"
|
||||||
|
Languages="1031"
|
||||||
|
Compressed="yes"
|
||||||
|
SummaryCodepage="1252"
|
||||||
|
InstallScope="perMachine"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Media Id='1' Cabinet='$(var.ProgramName).cab' EmbedCab='yes' DiskPrompt='$(var.ProgramName)' />
|
||||||
|
<Property Id='DiskPrompt' Value="$(var.ProgramName) Install" />
|
||||||
|
|
||||||
|
<MajorUpgrade
|
||||||
|
AllowDowngrades="no"
|
||||||
|
AllowSameVersionUpgrades="yes"
|
||||||
|
DowngradeErrorMessage="Eine neuere Version von [ProductName] ist bereits installiert. Das Setup wird beendet."
|
||||||
|
/>
|
||||||
|
|
||||||
|
<Property Id="PREVIOUSVERSIONSINSTALLED" Secure="yes" />
|
||||||
|
<Upgrade Id="$(var.UpgradeCode)">
|
||||||
|
<UpgradeVersion
|
||||||
|
Minimum="1.0.0.0" Maximum="99.0.0.0"
|
||||||
|
Property="PREVIOUSVERSIONSINSTALLED"
|
||||||
|
IncludeMinimum="yes" IncludeMaximum="no" />
|
||||||
|
</Upgrade>
|
||||||
|
|
||||||
|
<!-- Legt das Icon fest -->
|
||||||
|
<Icon Id="AppIcon.exe" SourceFile="$(var.ProgramName).exe" />
|
||||||
|
<!-- Zeige Icon in Systemsteuerung > Programme entfernen -->
|
||||||
|
<Property Id="ARPPRODUCTICON" Value="AppIcon" />
|
||||||
|
|
||||||
|
<!-- Legt die Verzeichnisstruktur fest -->
|
||||||
|
<Directory Id="TARGETDIR" Name="SourceDir">
|
||||||
|
<Directory Id="ProgramFilesFolder">
|
||||||
|
<Directory Id="DDDIR" Name="$(var.Manufacturer)">
|
||||||
|
<Directory Id="INSTALLDIR" Name="$(var.ProductName)"/>
|
||||||
|
</Directory>
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory Id="ProgramMenuFolder">
|
||||||
|
<Directory Id="ApplicationProgramsFolder" Name="$(var.ProductName)"/>
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<Directory Id="DesktopFolder" />
|
||||||
|
</Directory>
|
||||||
|
|
||||||
|
<!-- Verknüpfung für Startmenü -->
|
||||||
|
<DirectoryRef Id="ApplicationProgramsFolder">
|
||||||
|
<Component Id="ApplicationShortcut_StartMenu" Guid="8e116ea7-41c4-4e83-af7c-997f8cb7432d">
|
||||||
|
<Shortcut Id="ApplicationStartMenuShortcut_StartMenu"
|
||||||
|
Name="$(var.ProductName)"
|
||||||
|
Target="[INSTALLDIR]WIDIG.exe"
|
||||||
|
WorkingDirectory="INSTALLDIR"/>
|
||||||
|
<RemoveFolder Id="ApplicationProgramsFolder_StartMenu" On="uninstall"/>
|
||||||
|
<RegistryValue Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
|
||||||
|
</Component>
|
||||||
|
</DirectoryRef>
|
||||||
|
|
||||||
|
<!-- Verknüpfung für Desktop -->
|
||||||
|
<DirectoryRef Id="DesktopFolder">
|
||||||
|
<Component Id="ApplicationShortcut_Desktop" Guid="9100d46d-1576-484a-b467-bc10ffdb21bb">
|
||||||
|
<Shortcut Id="ApplicationStartMenuShortcut_Desktop"
|
||||||
|
Name="$(var.ProductName)"
|
||||||
|
Target="[INSTALLDIR]WIDIG.exe"
|
||||||
|
WorkingDirectory="INSTALLDIR"/>
|
||||||
|
<RemoveFolder Id="ApplicationProgramsFolder_Desktop" On="uninstall"/>
|
||||||
|
<RegistryValue Root="HKCU" Key="Software\[Manufacturer]\[ProductName]" Name="installed" Type="integer" Value="1" KeyPath="yes"/>
|
||||||
|
</Component>
|
||||||
|
</DirectoryRef>
|
||||||
|
|
||||||
|
<DirectoryRef Id="INSTALLDIR">
|
||||||
|
<Component Id="MainApplicationExe" Guid="195612c2-f0c0-472a-a83e-935bf13ce295">
|
||||||
|
<File Id="MainApplicationExe" Name="WIDIG.exe" KeyPath="no" Checksum="yes">
|
||||||
|
<Shortcut Id="DesktopShortcut" Directory="DesktopFolder" Name="$(var.ProductName)" WorkingDirectory="INSTALLDIR" Icon="AppIcon.exe" IconIndex="0" Advertise="yes" />
|
||||||
|
<Shortcut Id="StartMenuShortcut" Directory="ProgramMenuFolder" Name="$(var.ProductName)" WorkingDirectory="INSTALLDIR" Icon="AppIcon.exe" IconIndex="0" Advertise="yes" />
|
||||||
|
</File>
|
||||||
|
<File Id="MainApplicationExeConfig" Name="WIDIG.exe.config" KeyPath="no" Checksum="yes" />
|
||||||
|
|
||||||
|
<File Id="ConsoleApplicationExe" Name="$(var.ProgramName).exe" KeyPath="yes" Checksum="yes"></File>
|
||||||
|
<File Id="ConsoleApplicationExeConfig" Name="$(var.ProgramName).exe.config" KeyPath="no" Checksum="yes"></File>
|
||||||
|
</Component>
|
||||||
|
|
||||||
|
<Component Id="DevExpressLibs" Guid="a17fa11f-d78f-464e-930e-5fad7927ce4e">
|
||||||
|
<File Id="DevExpress.Data.v19.2.dll" Name="DevExpress.Data.v19.2.dll" KeyPath="yes" Checksum="yes"/>
|
||||||
|
<File Id="DevExpress.Pdf.v19.2.Core.dll" Name="DevExpress.Pdf.v19.2.Core.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DevExpress.Printing.v19.2.Core.dll" Name="DevExpress.Printing.v19.2.Core.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DevExpress.Sparkline.v19.2.Core.dll" Name="DevExpress.Sparkline.v19.2.Core.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DevExpress.Utils.v19.2.dll" Name="DevExpress.Utils.v19.2.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DevExpress.XtraBars.v19.2.dll" Name="DevExpress.XtraBars.v19.2.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DevExpress.XtraEditors.v19.2.dll" Name="DevExpress.XtraEditors.v19.2.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
</Component>
|
||||||
|
|
||||||
|
<Component Id="DigitalDataLibs" Guid="940298ca-6934-4e7a-a45b-1246b23622a6">
|
||||||
|
<File Id="DigitalData.Modules.Config.dll" Name="DigitalData.Modules.Config.dll" KeyPath="yes" Checksum="yes"/>
|
||||||
|
<File Id="DigitalData.Modules.Filesystem.dll" Name="DigitalData.Modules.Filesystem.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DigitalData.Modules.Language.dll" Name="DigitalData.Modules.Language.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DigitalData.Modules.Logging.dll" Name="DigitalData.Modules.Logging.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="DigitalData.Modules.Windream.dll" Name="DigitalData.Modules.Windream.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
</Component>
|
||||||
|
|
||||||
|
<Component Id="MiscLibs" Guid="6a621556-dac9-48e2-b50c-624191d26845">
|
||||||
|
<File Id="Interop.WINDREAMLib.dll" Name="Interop.WINDREAMLib.dll" KeyPath="yes" Checksum="yes"/>
|
||||||
|
<File Id="NLog.dll" Name="NLog.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
<File Id="protobufnet.dll" Name="protobuf-net.dll" KeyPath="no" Checksum="yes"/>
|
||||||
|
</Component>
|
||||||
|
|
||||||
|
<!-- Für weitere Dateien hier Component Elemente anlegen!! -->
|
||||||
|
<!--
|
||||||
|
<Component Id="FirmaXYLib" Guid="PUT-GUID-HERE">
|
||||||
|
<File Id="FirmaXYLib" Name="FirmaXYLib.dll" KeyPath="yes" Checksum="yes"/>
|
||||||
|
</Component>
|
||||||
|
-->
|
||||||
|
|
||||||
|
<Component Id="RegistryKeys" Guid="aeebea13-8ad6-4f3d-ac4a-ecea4151dfb0">
|
||||||
|
<RegistryKey Root="HKLM" Key="SOFTWARE">
|
||||||
|
<RegistryKey Key="[Manufacturer]">
|
||||||
|
<RegistryKey Key="[ProductName]" ForceCreateOnInstall="yes" ForceDeleteOnUninstall="yes" Id="REGKEYINSTALLDIR">
|
||||||
|
<RegistryValue Type="string" Value="[INSTALLDIR]" Name="Path" />
|
||||||
|
</RegistryKey>
|
||||||
|
</RegistryKey>
|
||||||
|
</RegistryKey>
|
||||||
|
|
||||||
|
<util:RemoveFolderEx Id="RemoveApplicationFolder" On="uninstall" Property="APPLICATIONFOLDER" />
|
||||||
|
</Component>
|
||||||
|
</DirectoryRef>
|
||||||
|
|
||||||
|
<Feature Id="MainApplication" Title="Main Application" Level="1">
|
||||||
|
<ComponentRef Id="MainApplicationExe" />
|
||||||
|
<ComponentRef Id="RegistryKeys" />
|
||||||
|
<ComponentRef Id="DevExpressLibs" />
|
||||||
|
<ComponentRef Id="DigitalDataLibs" />
|
||||||
|
<ComponentRef Id="MiscLibs" />
|
||||||
|
<!-- Weitere Komponenten hier hinzufügen! -->
|
||||||
|
</Feature>
|
||||||
|
|
||||||
|
<!--
|
||||||
|
Diese Features können mit einem Parameter beim Aufruf des Installers deaktiviert werden
|
||||||
|
-->
|
||||||
|
<Feature Id="DesktopShortcut" Title="Desktop Shortcut">
|
||||||
|
<Condition Level="0">DISABLE_DESKTOP_ICON</Condition>
|
||||||
|
<ComponentRef Id="ApplicationShortcut_Desktop"/>
|
||||||
|
</Feature>
|
||||||
|
|
||||||
|
<Feature Id="StartmenuShortcut" Title="Startmenu Shortcut">
|
||||||
|
<Condition Level="0">DISABLE_STARTMENU_ICON</Condition>
|
||||||
|
<ComponentRef Id="ApplicationShortcut_StartMenu" />
|
||||||
|
</Feature>
|
||||||
|
|
||||||
|
<!-- Legt das Standard-Installationsverzeichnis fest-->
|
||||||
|
<Property Id="WIXUI_INSTALLDIR" Value="INSTALLDIR" />
|
||||||
|
<Property Id="_BrowseProperty" Value="INSTALLDIR" />
|
||||||
|
|
||||||
|
<!-- Konfiguriert die Reihenfolge der Installer-Dialoge -->
|
||||||
|
<UI>
|
||||||
|
<UIRef Id="WixUI_FeatureTree"/>
|
||||||
|
<UIRef Id="WixUI_ErrorProgressText" />
|
||||||
|
<Publish Dialog="WelcomeDlg"
|
||||||
|
Control="Next"
|
||||||
|
Event="NewDialog"
|
||||||
|
Value="InstallDirDlg"
|
||||||
|
Order="2">1</Publish>
|
||||||
|
<Publish Dialog="InstallDirDlg"
|
||||||
|
Control="Back"
|
||||||
|
Event="NewDialog"
|
||||||
|
Value="WelcomeDlg"
|
||||||
|
Order="2">1</Publish>
|
||||||
|
<Publish Dialog="InstallDirDlg"
|
||||||
|
Control="Next"
|
||||||
|
Event="NewDialog"
|
||||||
|
Value="FeaturesDlg"
|
||||||
|
Order="2">1</Publish>
|
||||||
|
<Publish Dialog="InstallDirDlg"
|
||||||
|
Control="ChangeFolder"
|
||||||
|
Event="NewDialog"
|
||||||
|
Value="BrowseDlg"
|
||||||
|
Order="2">1</Publish>
|
||||||
|
<Publish Dialog="FeaturesDlg"
|
||||||
|
Control="Back"
|
||||||
|
Event="NewDialog"
|
||||||
|
Value="InstallDirDlg"
|
||||||
|
Order="2">1</Publish>
|
||||||
|
</UI>
|
||||||
|
</Product>
|
||||||
|
</Wix>
|
||||||
73
SetupWIX/SetupWIX.wixproj
Normal file
73
SetupWIX/SetupWIX.wixproj
Normal file
@ -0,0 +1,73 @@
|
|||||||
|
<Project ToolsVersion="4.0" DefaultTargets="Build" InitialTargets="EnsureWixToolsetInstalled" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<PropertyGroup>
|
||||||
|
<Configuration Condition=" '$(Configuration)' == '' ">Debug</Configuration>
|
||||||
|
<Platform Condition=" '$(Platform)' == '' ">x86</Platform>
|
||||||
|
<ProductVersion>3.10</ProductVersion>
|
||||||
|
<ProjectGuid>3943e21a-dd2b-4c74-b06f-9a39caa70e11</ProjectGuid>
|
||||||
|
<SchemaVersion>2.0</SchemaVersion>
|
||||||
|
<OutputName>SetupWIX</OutputName>
|
||||||
|
<OutputType>Package</OutputType>
|
||||||
|
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' AND '$(MSBuildExtensionsPath32)' != '' ">$(MSBuildExtensionsPath32)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
|
||||||
|
<WixTargetsPath Condition=" '$(WixTargetsPath)' == '' ">$(MSBuildExtensionsPath)\Microsoft\WiX\v3.x\Wix.targets</WixTargetsPath>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|x86' ">
|
||||||
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||||
|
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||||
|
<DefineConstants>Debug</DefineConstants>
|
||||||
|
<Cultures>de-DE</Cultures>
|
||||||
|
<LinkerAdditionalOptions>
|
||||||
|
-b "$(SolutionDir)WIDigConsoleApp\bin\$(Configuration)"
|
||||||
|
-b "$(SolutionDir)WIDigForm\bin\$(Configuration)"
|
||||||
|
</LinkerAdditionalOptions>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|x86' ">
|
||||||
|
<OutputPath>bin\$(Configuration)\</OutputPath>
|
||||||
|
<IntermediateOutputPath>obj\$(Configuration)\</IntermediateOutputPath>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Compile Include="Product.wxs" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<WixExtension Include="WixUtilExtension">
|
||||||
|
<HintPath>$(WixExtDir)\WixUtilExtension.dll</HintPath>
|
||||||
|
<Name>WixUtilExtension</Name>
|
||||||
|
</WixExtension>
|
||||||
|
<WixExtension Include="WixUIExtension">
|
||||||
|
<HintPath>$(WixExtDir)\WixUIExtension.dll</HintPath>
|
||||||
|
<Name>WixUIExtension</Name>
|
||||||
|
</WixExtension>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<Content Include="Config.wxi" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(WixTargetsPath)" Condition=" Exists('$(WixTargetsPath)') " />
|
||||||
|
<Target Name="EnsureWixToolsetInstalled" Condition=" !Exists('$(WixTargetsPath)') ">
|
||||||
|
<Error Text="The WiX Toolset v3 build tools must be installed to build this project. To download the WiX Toolset, see http://wixtoolset.org/releases/" />
|
||||||
|
</Target>
|
||||||
|
<!--
|
||||||
|
To modify your build process, add your task inside one of the targets below and uncomment it.
|
||||||
|
Other similar extension points exist, see Wix.targets.
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
</Target>
|
||||||
|
<Target Name="AfterBuild">
|
||||||
|
</Target>
|
||||||
|
-->
|
||||||
|
<Target Name="BeforeBuild">
|
||||||
|
<!-- Get the programs assembly version from the .exe file -->
|
||||||
|
<GetAssemblyIdentity AssemblyFiles="..\WIDigConsoleApp\bin\$(Configuration)\WIDigConsoleApp.exe">
|
||||||
|
<Output TaskParameter="Assemblies" ItemName="AsmInfo" />
|
||||||
|
</GetAssemblyIdentity>
|
||||||
|
<!-- Store the assembly version number in ProductVersion preprocessor variable -->
|
||||||
|
<CreateProperty Value="$(DefineConstants);ProductVersion=%(AsmInfo.Version)">
|
||||||
|
<Output TaskParameter="Value" PropertyName="DefineConstants" />
|
||||||
|
</CreateProperty>
|
||||||
|
<!-- Name the .msi file after the solution platform and assembly version e.g TestService-x86-1.4.0.0.msi -->
|
||||||
|
<CreateProperty Value="$(SolutionName)-$(Platform)-%(AsmInfo.Version)">
|
||||||
|
<Output TaskParameter="Value" PropertyName="TargetName" />
|
||||||
|
</CreateProperty>
|
||||||
|
<!-- Name the .wixpdb file after the solution platform and assembly version e.g TestService-x86-1.4.0.0.msi -->
|
||||||
|
<CreateProperty Value="$(TargetName)$(TargetPdbExt)">
|
||||||
|
<Output TaskParameter="Value" PropertyName="TargetPdbName" />
|
||||||
|
</CreateProperty>
|
||||||
|
</Target>
|
||||||
|
</Project>
|
||||||
@ -7,20 +7,38 @@ Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WIDigConsoleApp", "WIDigCon
|
|||||||
EndProject
|
EndProject
|
||||||
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WIDigForm", "WIDigForm\WIDigForm.vbproj", "{75B536FE-5D8D-42A9-8519-0041FABC994B}"
|
Project("{F184B08F-C81C-45F6-A57F-5ABD9991F28F}") = "WIDigForm", "WIDigForm\WIDigForm.vbproj", "{75B536FE-5D8D-42A9-8519-0041FABC994B}"
|
||||||
EndProject
|
EndProject
|
||||||
|
Project("{930C7802-8A8C-48F9-8165-68863BCCD9DD}") = "SetupWIX", "SetupWIX\SetupWIX.wixproj", "{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}"
|
||||||
|
EndProject
|
||||||
Global
|
Global
|
||||||
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
Debug|Any CPU = Debug|Any CPU
|
Debug|Any CPU = Debug|Any CPU
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
Release|Any CPU = Release|Any CPU
|
Release|Any CPU = Release|Any CPU
|
||||||
|
Release|x86 = Release|x86
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Release|Any CPU.Build.0 = Release|Any CPU
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{B146A4E7-FD28-4F57-9BE0-C4178A258623}.Release|x86.Build.0 = Release|Any CPU
|
||||||
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
|
||||||
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Debug|Any CPU.Build.0 = Debug|Any CPU
|
||||||
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Debug|x86.ActiveCfg = Debug|Any CPU
|
||||||
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Debug|x86.Build.0 = Debug|Any CPU
|
||||||
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Release|Any CPU.ActiveCfg = Release|Any CPU
|
||||||
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Release|Any CPU.Build.0 = Release|Any CPU
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Release|Any CPU.Build.0 = Release|Any CPU
|
||||||
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Release|x86.ActiveCfg = Release|Any CPU
|
||||||
|
{75B536FE-5D8D-42A9-8519-0041FABC994B}.Release|x86.Build.0 = Release|Any CPU
|
||||||
|
{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}.Debug|Any CPU.ActiveCfg = Debug|x86
|
||||||
|
{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}.Debug|x86.ActiveCfg = Debug|x86
|
||||||
|
{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}.Debug|x86.Build.0 = Debug|x86
|
||||||
|
{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}.Release|Any CPU.ActiveCfg = Release|x86
|
||||||
|
{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}.Release|x86.ActiveCfg = Release|x86
|
||||||
|
{3943E21A-DD2B-4C74-B06F-9A39CAA70E11}.Release|x86.Build.0 = Release|x86
|
||||||
EndGlobalSection
|
EndGlobalSection
|
||||||
GlobalSection(SolutionProperties) = preSolution
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
HideSolutionNode = FALSE
|
HideSolutionNode = FALSE
|
||||||
|
|||||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
4da815c39bd1924dd323b44d3357f803f96afa5b
|
|
||||||
@ -1,63 +0,0 @@
|
|||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.exe.config
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.exe
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Config.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Logging.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Windream.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\NLog.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Filesystem.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\Interop.WINDREAMLib.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Language.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\protobuf-net.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Config.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Config.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Logging.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Logging.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Windream.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Windream.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\NLog.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Filesystem.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Filesystem.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Language.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Language.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\bin\Debug\protobuf-net.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.Resources.resources
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbproj.GenerateResource.cache
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbproj.CoreCompileInputs.cache
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbproj.CopyComplete
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.exe
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDigConsoleApp\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.exe.config
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.exe
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\WIDigConsoleApp.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Config.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Logging.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Windream.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\NLog.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Filesystem.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\Interop.WINDREAMLib.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Language.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\protobuf-net.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Config.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Config.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Logging.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Logging.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Windream.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Windream.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\NLog.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Filesystem.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Filesystem.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Language.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\DigitalData.Modules.Language.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\bin\Debug\protobuf-net.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbprojAssemblyReference.cache
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.Resources.resources
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbproj.GenerateResource.cache
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbproj.CoreCompileInputs.cache
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.vbproj.CopyComplete
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.exe
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDigConsoleApp\obj\Debug\WIDigConsoleApp.pdb
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,26 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
WIDigConsoleApp
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:WIDigConsoleApp.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
A strongly-typed resource class, for looking up localized strings, etc.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:WIDigConsoleApp.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Returns the cached ResourceManager instance used by this class.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:WIDigConsoleApp.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Overrides the current thread's CurrentUICulture property for all
|
|
||||||
resource lookups using this strongly typed resource class.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
2020-03-26 15:03:13|Form1|WARN >> Insufficient number of arguments [1]!
|
|
||||||
2020-03-26 15:05:38|Form1|WARN >> Insufficient number of arguments [1]!
|
|
||||||
2020-03-26 15:09:30|Form1|WARN >> Insufficient number of arguments [4]!
|
|
||||||
@ -1,11 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<ClassConfig xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
||||||
<ConnectionString />
|
|
||||||
<WMUsername></WMUsername>
|
|
||||||
<WMUserPW></WMUserPW>
|
|
||||||
<WMDrive>W</WMDrive>
|
|
||||||
<WMRelPath>\\windream\objects</WMRelPath>
|
|
||||||
<WMServer></WMServer>
|
|
||||||
<Domain></Domain>
|
|
||||||
<LOG_DEBUG>true</LOG_DEBUG>
|
|
||||||
</ClassConfig>
|
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,499 +0,0 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<doc xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
|
|
||||||
<assembly>
|
|
||||||
<name>DevExpress.Sparkline.v19.2.Core</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="N:DevExpress.Sparkline">
|
|
||||||
<summary>
|
|
||||||
<para>Contains classes required for DevExpress sparklines.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.AreaSparklineView">
|
|
||||||
<summary>
|
|
||||||
<para>The Area sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.AreaSparklineView.#ctor">
|
|
||||||
<summary>
|
|
||||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Sparkline.AreaSparklineView"/> class with the default settings.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.AreaSparklineView.AreaOpacity">
|
|
||||||
<summary>
|
|
||||||
<para>Specifies the opacity (0-255) of the area sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Byte"/> value from 0 (transparent) to 255 (opaque).</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.AreaSparklineView.Assign(DevExpress.Sparkline.SparklineViewBase)">
|
|
||||||
<summary>
|
|
||||||
<para>Copies all the settings from the <see cref="T:DevExpress.Sparkline.AreaSparklineView"/> object passed as the parameter.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">A <see cref="T:DevExpress.Sparkline.AreaSparklineView"/> object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If null (Nothing in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.AreaSparklineView.Type">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the type of the sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
<value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.Area"/>.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.AreaSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
|
|
||||||
<summary>
|
|
||||||
<para>Invokes the Visit method of the specified visitor for the current <see cref="T:DevExpress.Sparkline.AreaSparklineView"/> object.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="visitor">An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.</param>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.BarSparklineView">
|
|
||||||
<summary>
|
|
||||||
<para>The Bar sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.BarSparklineView.#ctor">
|
|
||||||
<summary>
|
|
||||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Sparkline.BarSparklineView"/> class with the default settings.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.BarSparklineView.Type">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the type of the sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
<value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.Bar"/>.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.BarSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
|
|
||||||
<summary>
|
|
||||||
<para>Invokes the Visit method of the specified visitor for the current <see cref="T:DevExpress.Sparkline.BarSparklineView"/> object.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="visitor">An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.</param>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.BarSparklineViewBase">
|
|
||||||
<summary>
|
|
||||||
<para>The base for Bar and WinLoss sparkline views.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.BarSparklineViewBase.Assign(DevExpress.Sparkline.SparklineViewBase)">
|
|
||||||
<summary>
|
|
||||||
<para>Copies all the settings from the <see cref="T:DevExpress.Sparkline.BarSparklineViewBase"/> object passed as the parameter.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">A <see cref="T:DevExpress.Sparkline.BarSparklineViewBase"/> object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If null (Nothing in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.BarSparklineViewBase.BarDistance">
|
|
||||||
<summary>
|
|
||||||
<para>Specifies the distance between two bars of a bar sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value (in pixels).</value>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.ISparklineViewVisitor">
|
|
||||||
<summary>
|
|
||||||
<para>Interface implementing the Visitor pattern.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.AreaSparklineView)">
|
|
||||||
<summary>
|
|
||||||
<para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">An <see cref="T:DevExpress.Sparkline.AreaSparklineView"/> object for which the operation is performed.</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.BarSparklineView)">
|
|
||||||
<summary>
|
|
||||||
<para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">An <see cref="T:DevExpress.Sparkline.BarSparklineView"/> object for which the operation is performed.</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.LineSparklineView)">
|
|
||||||
<summary>
|
|
||||||
<para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">An <see cref="T:DevExpress.Sparkline.LineSparklineView"/> object for which the operation is performed.</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.ISparklineViewVisitor.Visit(DevExpress.Sparkline.WinLossSparklineView)">
|
|
||||||
<summary>
|
|
||||||
<para>Performs the operation as required by the Visitor and the View, as defined in the Visitor pattern.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">An <see cref="T:DevExpress.Sparkline.WinLossSparklineView"/> object for which the operation is performed.</param>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.LineSparklineView">
|
|
||||||
<summary>
|
|
||||||
<para>The Line sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.LineSparklineView.#ctor">
|
|
||||||
<summary>
|
|
||||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Sparkline.LineSparklineView"/> class with the default settings.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualEndPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualLineWidth">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualMarkerColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of a sparkline marker.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual marker color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualMaxPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualMinPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualNegativePointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ActualStartPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.LineSparklineView.Assign(DevExpress.Sparkline.SparklineViewBase)">
|
|
||||||
<summary>
|
|
||||||
<para>Copies all the settings from the <see cref="T:DevExpress.Sparkline.LineSparklineView"/> object passed as the parameter.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">A <see cref="T:DevExpress.Sparkline.LineSparklineView"/> object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If null (Nothing in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.EnableAntialiasing">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets whether anti-aliasing (smoothing) is applied to the line view.</para>
|
|
||||||
</summary>
|
|
||||||
<value>True to apply anti-aliasing to the line view; False to disable anti-aliasing.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.EndPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the size of an end point's marker.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the marker size, in pixels.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.LineWidth">
|
|
||||||
<summary>
|
|
||||||
<para>Specifies the width of a line in a <see cref="T:DevExpress.Sparkline.LineSparklineView"/>.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the line width (in pixels).</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.MarkerColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw line markers.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw line markers.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.MarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the size of markers for data points in a line sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the marker size, in pixels.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.MaxPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the marker size of a data point that has the maximum value among all data points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the marker size, in pixels.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.MinPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the marker size of a data point that has the minimum value among all data points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the marker size, in pixels.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.NegativePointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the marker size of all data points that have negative values (less than 0).</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the marker size, in pixels.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ScaleFactor">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.LineSparklineView.SetSizeForAllMarkers(System.Int32)">
|
|
||||||
<summary>
|
|
||||||
<para>Sets size for all markers of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="markerSize">An integer value specifying the new size for sparkline markers (in pixels).</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.ShowMarkers">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying the visibility of point markers on a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>true to show markers for each data point; false to hide them.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.StartPointMarkerSize">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the size of a start point's marker.</para>
|
|
||||||
</summary>
|
|
||||||
<value>An integer value specifying the marker size, in pixels.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.LineSparklineView.Type">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the type of the sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
<value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.Line"/>.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.LineSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
|
|
||||||
<summary>
|
|
||||||
<para>Invokes the Visit method of the specified visitor for the current <see cref="T:DevExpress.Sparkline.LineSparklineView"/> object.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="visitor">An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.</param>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.SparklineRange">
|
|
||||||
<summary>
|
|
||||||
<para>Represents a range to be used in DevExpress Sparkline controls.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineRange.#ctor">
|
|
||||||
<summary>
|
|
||||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Sparkline.SparklineRange"/> class with the default settings.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineRange.#ctor(System.Double,System.Double)">
|
|
||||||
<summary>
|
|
||||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Sparkline.SparklineRange"/> class with the specified minimum and maximum limits.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="min">A <see cref="T:System.Double"/> value, specifying the minimum limit. This value is assigned to the <see cref="P:DevExpress.Sparkline.SparklineRange.Limit1"/> property.</param>
|
|
||||||
<param name="max">A <see cref="T:System.Double"/> value, specifying the maximum limit. This value is assigned to the <see cref="P:DevExpress.Sparkline.SparklineRange.Limit2"/> property.</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineRange.IsAuto">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value indicating whether or not range limits should be calculated automatically.</para>
|
|
||||||
</summary>
|
|
||||||
<value>true to calculate range limits automatically; false to use the <see cref="P:DevExpress.Sparkline.SparklineRange.Limit1"/> and <see cref="P:DevExpress.Sparkline.SparklineRange.Limit2"/> property values.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineRange.Limit1">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying the first limit of the range.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Double"/> value that specifies the first limit.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineRange.Limit2">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying the second limit of the range.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Double"/> value that specifies the second limit.</value>
|
|
||||||
</member>
|
|
||||||
<member name="E:DevExpress.Sparkline.SparklineRange.PropertiesChanged">
|
|
||||||
<summary>
|
|
||||||
<para>This event is hidden, because it is not appropriate for the <see cref="T:DevExpress.Sparkline.SparklineRange"/> class.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineRange.ToString">
|
|
||||||
<summary>
|
|
||||||
<para>Returns the textual representation of the <see cref="T:DevExpress.Sparkline.SparklineRange"/>.</para>
|
|
||||||
</summary>
|
|
||||||
<returns>A <see cref="T:System.String"/> value which is the textual representation of the <see cref="T:DevExpress.Sparkline.SparklineRange"/>.</returns>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.SparklineViewBase">
|
|
||||||
<summary>
|
|
||||||
<para>The base class for sparkline views.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.ActualColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual sparkline color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.ActualEndPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of a sparkline end point.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.ActualMaxPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of a sparkline maximum point.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.ActualMinPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of a sparkline minimum point.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.ActualNegativePointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of sparkline negative points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.ActualStartPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the actual color of a sparkline start point.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> value that is the actual point color.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineViewBase.Assign(DevExpress.Sparkline.SparklineViewBase)">
|
|
||||||
<summary>
|
|
||||||
<para>Copies all the settings from the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> object passed as the parameter.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="view">A <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> object (which is the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> descendant) whose settings are assigned to the current object. If null (Nothing in Visual Basic), then a <see cref="T:System.ArgumentNullException"/> will be thrown.</param>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.Color">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw a sparkline.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineViewBase.CreateView(DevExpress.Sparkline.SparklineViewType)">
|
|
||||||
<summary>
|
|
||||||
<para>Creates a sparkline view of the specified type.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="viewType">A <see cref="T:DevExpress.Sparkline.SparklineViewType"/> enumeration value specifying the type of view to create.</param>
|
|
||||||
<returns>A <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> class descendant.</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.EndPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw the end point of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw the end point.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightEndPoint">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying whether or not to highlight the end point of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>true, to highlight the end point; otherwise, false.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightMaxPoint">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying whether or not to highlight a sparkline point that has the highest value among all points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>true, to highlight a point with the maximum value; otherwise, false.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightMinPoint">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying whether or not to highlight a sparkline point that has the lowest value among all points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>true, to highlight a point with the minimum value; otherwise, false.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightNegativePoints">
|
|
||||||
<summary>
|
|
||||||
<para></para>
|
|
||||||
</summary>
|
|
||||||
<value></value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.HighlightStartPoint">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets a value specifying whether or not to highlight the start point of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>true, to highlight the start point; otherwise, false.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.MaxPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw a sparkline point that has the highest value among all data points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw a data point with the maximum value.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.MinPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw a sparkline point that has the lowest value among all data points.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw a data point with the minimum value.</value>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.NegativePointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw sparkline points that have negative values (less than 0).</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw data points with negative values.</value>
|
|
||||||
</member>
|
|
||||||
<member name="E:DevExpress.Sparkline.SparklineViewBase.PropertiesChanged">
|
|
||||||
<summary>
|
|
||||||
<para>Occurs when any property of the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> object has changed its value.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.StartPointColor">
|
|
||||||
<summary>
|
|
||||||
<para>Gets or sets the color to draw the start point of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:System.Drawing.Color"/> that defines the color to draw the start point.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineViewBase.ToString">
|
|
||||||
<summary>
|
|
||||||
<para>Returns a human-readable string that represents the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> object.</para>
|
|
||||||
</summary>
|
|
||||||
<returns>A <see cref="T:System.String"/> value that represents the <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> object.</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.SparklineViewBase.Type">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the type of the sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
<value>A <see cref="T:DevExpress.Sparkline.SparklineViewType"/> enumeration value specifying the view type.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.SparklineViewBase.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
|
|
||||||
<summary>
|
|
||||||
<para>Invokes the Visit method of the specified visitor for the current <see cref="T:DevExpress.Sparkline.SparklineViewBase"/> object.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="visitor">An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.</param>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.SparklineViewType">
|
|
||||||
<summary>
|
|
||||||
<para>Lists the values used to specify the available view types of a sparkline.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:DevExpress.Sparkline.SparklineViewType.Area">
|
|
||||||
<summary>
|
|
||||||
<para>Sparkline data points are represented as area.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:DevExpress.Sparkline.SparklineViewType.Bar">
|
|
||||||
<summary>
|
|
||||||
<para>Sparkline data points are represented as bars.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:DevExpress.Sparkline.SparklineViewType.Line">
|
|
||||||
<summary>
|
|
||||||
<para>Sparkline data points are represented as a line.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="F:DevExpress.Sparkline.SparklineViewType.WinLoss">
|
|
||||||
<summary>
|
|
||||||
<para>Sparkline data points are represented as win and loss squares.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DevExpress.Sparkline.WinLossSparklineView">
|
|
||||||
<summary>
|
|
||||||
<para>The WinLoss sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.WinLossSparklineView.#ctor">
|
|
||||||
<summary>
|
|
||||||
<para>Initializes a new instance of the <see cref="T:DevExpress.Sparkline.WinLossSparklineView"/> class with the default settings.</para>
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DevExpress.Sparkline.WinLossSparklineView.Type">
|
|
||||||
<summary>
|
|
||||||
<para>Gets the type of the sparkline view.</para>
|
|
||||||
</summary>
|
|
||||||
<value>Always <see cref="F:DevExpress.Sparkline.SparklineViewType.WinLoss"/>.</value>
|
|
||||||
</member>
|
|
||||||
<member name="M:DevExpress.Sparkline.WinLossSparklineView.Visit(DevExpress.Sparkline.ISparklineViewVisitor)">
|
|
||||||
<summary>
|
|
||||||
<para>Invokes the Visit method of the specified visitor for the current <see cref="T:DevExpress.Sparkline.WinLossSparklineView"/> object.</para>
|
|
||||||
</summary>
|
|
||||||
<param name="visitor">An object implementing the <see cref="T:DevExpress.Sparkline.ISparklineViewVisitor"/> interface.</param>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
Binary file not shown.
@ -1,120 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
DigitalData.Modules.Config
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:DigitalData.Modules.Config.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Config.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Config.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
||||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Config.ConfigAttributes.ConnectionStringAttribute">
|
|
||||||
<summary>
|
|
||||||
The primary connection string. Will not be saved to userconfig.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Config.ConfigAttributes.ConnectionStringTestAttribute">
|
|
||||||
<summary>
|
|
||||||
The test connection string. Will not be saved to userconfig.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Config.ConfigAttributes.GlobalSettingAttribute">
|
|
||||||
<summary>
|
|
||||||
Global setting. Will not be saved to userconfig.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Config.ConfigManager`1.Config">
|
|
||||||
<summary>
|
|
||||||
Returns the currently loaded config object
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Config.ConfigManager`1.UserConfigPath">
|
|
||||||
<summary>
|
|
||||||
Path to the current user config.
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Config.ConfigManager`1.ComputerConfigPath">
|
|
||||||
<summary>
|
|
||||||
Path to the current computer config. Maybe the same as `UserConfigPath`
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.#ctor(DigitalData.Modules.Logging.LogConfig,System.String,System.String,System.String,System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Creates a new instance of the ConfigManager
|
|
||||||
</summary>
|
|
||||||
<seealso cref="T:DigitalData.Modules.Config.ConfigSample"/>
|
|
||||||
<param name="LogConfig">LogConfig instance</param>
|
|
||||||
<param name="UserConfigPath">The path to check for a user config file, eg. AppData (Usually Application.UserAppDataPath or Application.LocalUserAppDataPath)</param>
|
|
||||||
<param name="ComputerConfigPath">The path to check for a computer config file, eg. ProgramData (Usually Application.CommonAppDataPath)</param>
|
|
||||||
<param name="ForceUserConfig">Override values from ComputerConfig with UserConfig</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.#ctor(DigitalData.Modules.Logging.LogConfig,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Creates a new ConfigManager with a single (user)config path
|
|
||||||
</summary>
|
|
||||||
<param name="LogConfig">LogConfig instance</param>
|
|
||||||
<param name="ConfigPath">The path to check for a user config file, eg. AppData (Usually Application.UserAppDataPath or Application.LocalUserAppDataPath)</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.Save(System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Save the current config object to `UserConfigPath`
|
|
||||||
</summary>
|
|
||||||
<param name="ForceAll">Force saving all attributes including the attributes marked as excluded</param>
|
|
||||||
<returns>True if save was successful, False otherwise</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.CopyValues(`0,`0,System.Collections.Generic.List{System.Type})">
|
|
||||||
<summary>
|
|
||||||
Copies all properties from Source to Target, except those who have an attribute
|
|
||||||
listed in ExcludedAttributeTypes
|
|
||||||
</summary>
|
|
||||||
<param name="Source">Source config object</param>
|
|
||||||
<param name="Target">Target config object</param>
|
|
||||||
<param name="ExcludedAttributeTypes">List of Attribute type to exclude</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.FilterValues(`0,System.Collections.Generic.List{System.Type})">
|
|
||||||
<summary>
|
|
||||||
Filters a config object by copying all values except `ExcludedAttributeTypes`
|
|
||||||
</summary>
|
|
||||||
<param name="Data">Config object</param>
|
|
||||||
<param name="ExcludedAttributeTypes">List of Attribute type to exclude</param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.Serialize(`0)">
|
|
||||||
<summary>
|
|
||||||
Serialize a config object to byte array
|
|
||||||
</summary>
|
|
||||||
<param name="Data"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.WriteToFile(`0,System.String,System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Write an object to disk as xml
|
|
||||||
</summary>
|
|
||||||
<param name="Data">The object to write</param>
|
|
||||||
<param name="Path">The file name to write to</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Config.ConfigManager`1.ReadFromFile(System.String)">
|
|
||||||
<summary>
|
|
||||||
Reads an xml from disk and deserializes to object
|
|
||||||
</summary>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,146 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
DigitalData.Modules.Filesystem
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Filesystem.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Filesystem.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
||||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.FileContainer">
|
|
||||||
<module>FileContainer</module>
|
|
||||||
<version>0.0.0.2</version>
|
|
||||||
<date>21.11.2018</date>
|
|
||||||
<summary>
|
|
||||||
File Container for securely saving files
|
|
||||||
</summary>
|
|
||||||
<dependencies>
|
|
||||||
NLog, >= 4.5.8
|
|
||||||
</dependencies>
|
|
||||||
<params>
|
|
||||||
LogConfig, DigitalData.Module.Logging.LogConfig
|
|
||||||
A LogConfig object
|
|
||||||
Password, String
|
|
||||||
The Password to Encrypt
|
|
||||||
Path, String
|
|
||||||
The Path to save/load the container
|
|
||||||
</params>
|
|
||||||
<example>
|
|
||||||
dim oContainer = Container.Create(logConfig, "pass", "E:\some.container")
|
|
||||||
dim oContainer = Container.Load(logConfig, "pass", "E:\some.container")
|
|
||||||
|
|
||||||
dim oContainer = new Container(logConfig, "pass", "E:\some.container")
|
|
||||||
oContainer.Save()
|
|
||||||
|
|
||||||
dim oContainer = new Container(logConfig, "pass", "E:\some.container")
|
|
||||||
oContainer.Contents = oSomeData
|
|
||||||
oContainer.Save()
|
|
||||||
|
|
||||||
dim oContainer = new Container(logConfig, "pass", "E:\some.container")
|
|
||||||
oContainer.Load()
|
|
||||||
dim oContents = oContainer.Contents
|
|
||||||
|
|
||||||
dim oContainer = new Container(logConfig, "pass", "E:\some.container")
|
|
||||||
oContainer.Load()
|
|
||||||
oContainer.Contents = oSomeOtherData
|
|
||||||
oContainer.Save()
|
|
||||||
oContainer.SaveAs("E:\some2.container")
|
|
||||||
</example>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.Encryption">
|
|
||||||
<summary>
|
|
||||||
https://stackoverflow.com/questions/10168240/encrypting-decrypting-a-string-in-c-sharp
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.File">
|
|
||||||
<module>File</module>
|
|
||||||
<version>0.0.0.1</version>
|
|
||||||
<date>11.10.2018</date>
|
|
||||||
<summary>
|
|
||||||
Module that provides variouse File operations
|
|
||||||
</summary>
|
|
||||||
<dependencies>
|
|
||||||
NLog, >= 4.5.8
|
|
||||||
</dependencies>
|
|
||||||
<params>
|
|
||||||
LogConfig, DigitalData.Module.Logging.LogConfig
|
|
||||||
A LogConfig object
|
|
||||||
</params>
|
|
||||||
<props>
|
|
||||||
</props>
|
|
||||||
<example>
|
|
||||||
</example>
|
|
||||||
<remarks>
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Filesystem.File.GetVersionedFilename(System.String)">
|
|
||||||
<summary>
|
|
||||||
Adds fileversions to given filename `Destination` if that file already exists.
|
|
||||||
</summary>
|
|
||||||
<param name="Destination"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Filesystem.File.RemoveFiles(System.String,System.Int32,System.String,System.String,System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Removes files in a directory filtered by filename, extension and last write date
|
|
||||||
</summary>
|
|
||||||
<param name="Path">The directory in which files will be deleted</param>
|
|
||||||
<param name="FileKeepTime">Only delete files which are older than x days. Must be between 0 and 1000 days.</param>
|
|
||||||
<param name="FileBaseName">A filename filter which will be checked</param>
|
|
||||||
<param name="FileExtension">A file extension which will be checked</param>
|
|
||||||
<param name="ContinueOnError">Should the function continue with deleting when a file could not be deleted?</param>
|
|
||||||
<returns>True if all files were deleted or if no files were deleted, otherwise false</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Filesystem.File.CreateDirectory(System.String,System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Tries to create a directory and returns its path.
|
|
||||||
Returns a temp path if `DirectoryPath` can not be created or written to.
|
|
||||||
</summary>
|
|
||||||
<param name="DirectoryPath">The directory to create</param>
|
|
||||||
<param name="TestWriteAccess">Should a write access test be performed?</param>
|
|
||||||
<returns>The used path</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Filesystem.FileWatcher.HandleFileChanged(System.Object,System.IO.FileSystemEventArgs)">
|
|
||||||
<summary>
|
|
||||||
This may fire twice for a single save operation,
|
|
||||||
see: https://blogs.msdn.microsoft.com/oldnewthing/20140507-00/?p=1053/
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.FileWatcherFilters">
|
|
||||||
<summary>
|
|
||||||
Built-in filters for FileWatcher that are useful for correctly detecting changes on Office documents (currently Office 2016)
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.FileWatcherFilters.BaseFileFilter">
|
|
||||||
<summary>
|
|
||||||
Base Filter that all filters must inherit from
|
|
||||||
Provides two functions that may be overridden and some useful file extension lists
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.FileWatcherFilters.TempFileFilter">
|
|
||||||
<summary>
|
|
||||||
Simple Filter that filters changes made on temporary files
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Filesystem.FileWatcherFilters.OfficeFileFilter">
|
|
||||||
<summary>
|
|
||||||
Filter to detect changes on Office files
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,80 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
DigitalData.Modules.Language
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:DigitalData.Modules.Language.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Language.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Language.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
||||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Language.Utils">
|
|
||||||
<summary>
|
|
||||||
Provides common utility functions that do not require a specific context.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.ShortGUID">
|
|
||||||
<summary>
|
|
||||||
Generates a random short (8 characters) guid
|
|
||||||
</summary>
|
|
||||||
<returns>The generated guid as a String</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.ToEnum``1(System.String)">
|
|
||||||
<summary>
|
|
||||||
Converts a String value to the given Enum
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T">The Enum Type</typeparam>
|
|
||||||
<param name="value">The string value to convert</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.NotNull``1(``0,``0)">
|
|
||||||
<summary>
|
|
||||||
Checks a value for three different `null` values,
|
|
||||||
Nothing, Empty String, DBNull
|
|
||||||
|
|
||||||
Returns the original value if the value is not null, or `defaultValue`
|
|
||||||
</summary>
|
|
||||||
<typeparam name="T">The type of the value</typeparam>
|
|
||||||
<param name="value">The value</param>
|
|
||||||
<param name="defaultValue">The default Value</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.ConvertTextToSlug(System.String)">
|
|
||||||
<summary>
|
|
||||||
Creates a "slug" from text that can be used as part of a valid URL.
|
|
||||||
Invalid characters are converted to hyphens. Punctuation that Is
|
|
||||||
perfect valid in a URL Is also converted to hyphens to keep the
|
|
||||||
result mostly text. Steps are taken to prevent leading, trailing,
|
|
||||||
And consecutive hyphens.
|
|
||||||
</summary>
|
|
||||||
<param name="s">The string to convert</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.IsVisibleOnAnyScreen(System.Drawing.Point)">
|
|
||||||
<summary>
|
|
||||||
Checks if a point is Visible on any screen
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.SizeIsVisible(System.Drawing.Size)">
|
|
||||||
<summary>
|
|
||||||
Checks if Size is not negative
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Language.Utils.LocationIsVisible(System.Drawing.Point)">
|
|
||||||
<summary>
|
|
||||||
Checks if Location is not negative
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,177 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
DigitalData.Modules.Logging
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:DigitalData.Modules.Logging.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
||||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Logging.LogConfig">
|
|
||||||
<module>LogConfig</module>
|
|
||||||
<version>0.0.1.0</version>
|
|
||||||
<date>02.10.2018</date>
|
|
||||||
<summary>
|
|
||||||
Module that writes file-logs to different locations:
|
|
||||||
local application data, the current directory or a custom path.
|
|
||||||
Files and directories will be automatically created.
|
|
||||||
</summary>
|
|
||||||
<dependencies>
|
|
||||||
NLog, >= 4.5.8
|
|
||||||
</dependencies>
|
|
||||||
<example>
|
|
||||||
Imports DigitalData.Modules.Logging
|
|
||||||
|
|
||||||
Class FooProgram
|
|
||||||
Private Logger as Logger
|
|
||||||
Private LogConfig as LogConfig
|
|
||||||
|
|
||||||
Public Sub New()
|
|
||||||
LogConfig = new LogConfig(args)
|
|
||||||
Logger = LogConfig.GetLogger()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub Bar()
|
|
||||||
Logger.Info("Baz")
|
|
||||||
End Sub
|
|
||||||
End Class
|
|
||||||
|
|
||||||
Class FooLib
|
|
||||||
Private Logger as NLog.Logger
|
|
||||||
|
|
||||||
Public Sub New(LogConfig as LogConfig)
|
|
||||||
Logger = LogConfig.GetLogger()
|
|
||||||
End Sub
|
|
||||||
|
|
||||||
Public Sub Bar()
|
|
||||||
Logger.Info("Baz")
|
|
||||||
End Sub
|
|
||||||
End Class
|
|
||||||
</example>
|
|
||||||
<remarks>
|
|
||||||
If logpath can not be written to, falls back to temp folder as defined in:
|
|
||||||
https://docs.microsoft.com/de-de/dotnet/api/system.io.path.gettemppath?view=netframework-4.7.2
|
|
||||||
|
|
||||||
If used in a service, LogPath must be set to CustomPath, otherwise the Log will be written to System32!
|
|
||||||
|
|
||||||
For NLog Troubleshooting, set the following Environment variables to write the NLog internal Log:
|
|
||||||
- NLOG_INTERNAL_LOG_LEVEL: Debug
|
|
||||||
- NLOG_INTERNAL_LOG_FILE: ex. C:\Temp\Nlog_Internal.log
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.LogConfig.LogFactory">
|
|
||||||
<summary>
|
|
||||||
Returns the NLog.LogFactory object that is used to create Loggers
|
|
||||||
</summary>
|
|
||||||
<returns>LogFactory object</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.LogConfig.LogFile">
|
|
||||||
<summary>
|
|
||||||
Returns the path to the current default logfile
|
|
||||||
</summary>
|
|
||||||
<returns>Filepath to the logfile</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.LogConfig.LogDirectory">
|
|
||||||
<summary>
|
|
||||||
Returns the path to the current log directory
|
|
||||||
</summary>
|
|
||||||
<returns>Directory path to the log directory</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.LogConfig.Debug">
|
|
||||||
<summary>
|
|
||||||
Determines if a debug log will be written
|
|
||||||
</summary>
|
|
||||||
<returns>True, if debug log will be written. False otherwise.</returns>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Logging.LogConfig.Logs">
|
|
||||||
<summary>
|
|
||||||
Returns Logs in Memory as List(Of String) if Debug is enabled
|
|
||||||
Returns an empty list if debug is disabled
|
|
||||||
</summary>
|
|
||||||
<returns>A list of log messages</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.#ctor(DigitalData.Modules.Logging.LogConfig.PathType,System.String,System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Initializes a new LogConfig object with a logpath and optinally a filename-suffix.
|
|
||||||
</summary>
|
|
||||||
<param name="LogPath">The basepath to write logs to. Can be AppData, CurrentDirectory or CustomPath.</param>
|
|
||||||
<param name="CustomLogPath">If `logPath` is set to custom, this defines the custom logPath.</param>
|
|
||||||
<param name="Suffix">If set to anything other than Nothing, extends the logfile name with this suffix.</param>
|
|
||||||
<param name="CompanyName">CompanyName is used to construct log-path in when LogPath is set to PathType:AppData</param>
|
|
||||||
<param name="ProductName">ProductName is used to construct log-path in when LogPath is set to PathType:AppData</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetLogger">
|
|
||||||
<summary>
|
|
||||||
Returns the Logger for the calling class
|
|
||||||
</summary>
|
|
||||||
<returns>An object of Logging.Logger</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetLogger(System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns the Logger for a class specified by `ClassName`
|
|
||||||
</summary>
|
|
||||||
<param name="ClassName">The name of the class the logger belongs to</param>
|
|
||||||
<returns>An object of Logging.Logger</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.ClearLogs">
|
|
||||||
<summary>
|
|
||||||
Clears the internal log
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetClassFullName">
|
|
||||||
<summary>
|
|
||||||
Gets the fully qualified name of the class invoking the calling method,
|
|
||||||
including the namespace but Not the assembly.
|
|
||||||
</summary>
|
|
||||||
<returns>The fully qualified class name</returns>
|
|
||||||
<remarks>This method is very resource-intensive!</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetConfig(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns the initial log configuration
|
|
||||||
</summary>
|
|
||||||
<param name="productName">The chosen productname</param>
|
|
||||||
<param name="logFileSuffix">The chosen suffix</param>
|
|
||||||
<returns>A NLog.LoggingConfiguration object</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.AddDefaultRules(NLog.Config.LoggingConfiguration@)">
|
|
||||||
<summary>
|
|
||||||
Adds the default rules
|
|
||||||
</summary>
|
|
||||||
<param name="config">A NLog.LoggingConfiguration object</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.GetCurrentLogFilePath">
|
|
||||||
<summary>
|
|
||||||
Returns the full path of the current default log file.
|
|
||||||
</summary>
|
|
||||||
<returns>Full path of the current default log file</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.LogConfig.ReloadConfig(System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Reconfigures and re-adds all loggers, optionally adding the debug rule.
|
|
||||||
</summary>
|
|
||||||
<param name="Debug">Adds the Debug rule if true.</param>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Logging.Logger.NewBlock(System.String)">
|
|
||||||
<summary>
|
|
||||||
Prints a preformatted Block including a block identifier
|
|
||||||
</summary>
|
|
||||||
<param name="blockId">A unique Identifier for this block, eg. DocId, FullPath, ..</param>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
Binary file not shown.
@ -1,373 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
DigitalData.Modules.Windream
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:DigitalData.Modules.Windream.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Windream.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Windream.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
|
||||||
Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.WithSessionReconnect">
|
|
||||||
<summary>
|
|
||||||
Sets flag in Windream class to reconnect on lost connection
|
|
||||||
</summary>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.WithDriveLetter(System.String)">
|
|
||||||
<summary>
|
|
||||||
Sets the drive letter of windream drive, default is "W"
|
|
||||||
</summary>
|
|
||||||
<param name="driveLetter">The drive letter to use</param>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.WithWindreamObjects(System.String)">
|
|
||||||
<summary>
|
|
||||||
Sets the drive letter to String.Empty, use \\windream\objects as Windream base path
|
|
||||||
</summary>
|
|
||||||
<param name="BasePath">The windream base path, eg. \\windream\objects</param>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.WithWindreamObjects">
|
|
||||||
<summary>
|
|
||||||
Sets the drive letter to String.Empty, use \\windream\objects as Windream base path
|
|
||||||
</summary>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.With64BitSupport">
|
|
||||||
<summary>
|
|
||||||
Sets flag in Windream class to indicate 64-bit support
|
|
||||||
</summary>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.WithServerName(System.String)">
|
|
||||||
<summary>
|
|
||||||
Sets the servername in Windream class, overriding the client setting
|
|
||||||
</summary>
|
|
||||||
<param name="serverName"></param>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.WithImpersonation(System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Sets the username, password and domain in Windream class, overriding the client settings
|
|
||||||
</summary>
|
|
||||||
<param name="userName">The username used for the connection</param>
|
|
||||||
<param name="password">The password used for the connection</param>
|
|
||||||
<param name="domain">The domain used for the connection</param>
|
|
||||||
<returns>A IConnectionBuilder instance to allow for chaining</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.ConnectionBuilder.Connect">
|
|
||||||
<summary>
|
|
||||||
Creates a connection.
|
|
||||||
</summary>
|
|
||||||
<exception cref="T:DigitalData.Modules.Windream.Exceptions.SessionException">If there was an error while establishing the connection</exception>
|
|
||||||
<returns>A Windream Object</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.#ctor(System.String,System.Boolean,System.Boolean,System.String,System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Initializes windream and creates a windream session with the actual user
|
|
||||||
</summary>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetObjecttypeNames">
|
|
||||||
<summary>
|
|
||||||
Returns all Objecttypes of current server as list of strings
|
|
||||||
</summary>
|
|
||||||
<returns>List of String of all objecttypes</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.NewFolder(System.String)">
|
|
||||||
<summary>
|
|
||||||
Creates a folder in windream. All folder-parts will be checked
|
|
||||||
</summary>
|
|
||||||
<param name="folderpath">full path of new folder</param>
|
|
||||||
<returns>Returns true when folder was created, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.NewIndexFile(System.String,System.String,System.String[])">
|
|
||||||
<summary>
|
|
||||||
Indexes the file with the given values
|
|
||||||
</summary>
|
|
||||||
<param name="WMFile">full filepath</param>
|
|
||||||
<param name="indexname">Name of the index</param>
|
|
||||||
<param name="aValues">values as array</param>
|
|
||||||
<returns>Returns true when folder was created, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.NewObjecttypeForFolder(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Sets the folder-objecttype.
|
|
||||||
</summary>
|
|
||||||
<param name="folderpath">full path of folder</param>
|
|
||||||
<param name="folderObjecttype">Obcjectype Name</param>
|
|
||||||
<returns>Returns true when Otype was set, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.NewVersion(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Creates a new version of the file
|
|
||||||
</summary>
|
|
||||||
<param name="WMPath">full path to the file</param>
|
|
||||||
<param name="Comment">Comment</param>
|
|
||||||
<returns>Returns true when version was created, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetChoiceLists">
|
|
||||||
<summary>
|
|
||||||
Returns all choicelists
|
|
||||||
</summary>
|
|
||||||
<returns>Choicelists as List of Strings or empty list if no choice lists are found</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetIndicesByObjecttype(System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns all indices for an objecttype
|
|
||||||
</summary>
|
|
||||||
<param name="ObjecttypeName">Name of objecttype</param>
|
|
||||||
<returns>Names of indices as list of String</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetChoicelistItems(System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns all items of a choicelist
|
|
||||||
</summary>
|
|
||||||
<param name="NameChoicelist">name of choicelist</param>
|
|
||||||
<returns>Items as list of String</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetSearchDocuments(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns the result of windream-search
|
|
||||||
</summary>
|
|
||||||
<param name="wdfLocation">filepath of windreamSearch-file</param>
|
|
||||||
<param name="NameIndexDocID">Name of the Docid Index </param>
|
|
||||||
<returns>Returns datatable</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetTypeOfIndexAsInt(System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns a windream-type as Integer.
|
|
||||||
</summary>
|
|
||||||
<param name="indexname">Name of indexfield</param>
|
|
||||||
<returns>Returns integer, which describes the type</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetValueforIndex(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns the value(s) for an index as a datatable
|
|
||||||
</summary>
|
|
||||||
<param name="WMFile">filepath of windream-file</param>
|
|
||||||
<param name="NameIndex">Name of the index </param>
|
|
||||||
<returns>Datatable</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.Return_VektorArray(WINDREAMLib.WMObject,System.String,System.Object,System.Object)">
|
|
||||||
<summary>
|
|
||||||
Returns the values for a vektorfield plus the new ones
|
|
||||||
</summary>
|
|
||||||
<param name="oDocument">windream-file as Object</param>
|
|
||||||
<param name="vktIndexName">Name of the index </param>
|
|
||||||
<returns>Returns value as Datatable</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.GetWMObjectForFile(System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns a WMObject if file exists
|
|
||||||
</summary>
|
|
||||||
<param name="WMPath">full path to the file</param>
|
|
||||||
<returns>Returns WMObject</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.TestFolderExists(System.String)">
|
|
||||||
<summary>
|
|
||||||
Checks if the folder exists
|
|
||||||
</summary>
|
|
||||||
<param name="folderpath">The path of the folder</param>
|
|
||||||
<returns>True if exists or false if not or error occured</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.TestWMFileExists(System.String)">
|
|
||||||
<summary>
|
|
||||||
Checks wether file exists in windream
|
|
||||||
</summary>
|
|
||||||
<param name="WMPath">full path to the file</param>
|
|
||||||
<returns>Returns true when file was deleted, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.TestWMUSerExists(System.String)">
|
|
||||||
<summary>
|
|
||||||
Checks if user exists in windream.
|
|
||||||
</summary>
|
|
||||||
<param name="username">test username</param>
|
|
||||||
<returns>Returns true if exists, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.TestWMGroupExists(System.String)">
|
|
||||||
<summary>
|
|
||||||
Checks if group exists in windream.
|
|
||||||
</summary>
|
|
||||||
<param name="groupname">test username</param>
|
|
||||||
<returns>Returns true if exists, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.RemFile(System.String)">
|
|
||||||
<summary>
|
|
||||||
Deletes a file in windream including all preversions
|
|
||||||
</summary>
|
|
||||||
<param name="WMPath">full path to the file</param>
|
|
||||||
<returns>Returns true when file was deleted, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream_alt.REMOVE_VEKTOR_LINK(System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Removes the vektorlink from windream
|
|
||||||
</summary>
|
|
||||||
<param name="WMPath">full path to the file</param>
|
|
||||||
<param name="vktIndexName">Indexname of Vektor-Index</param>
|
|
||||||
<param name="deleteValue">Value which is to be deleted</param>
|
|
||||||
<returns>Returns true when indexing was successfull, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="T:DigitalData.Modules.Windream.Windream">
|
|
||||||
<module>Windream</module>
|
|
||||||
<version>0.0.0.2</version>
|
|
||||||
<date>23.10.2018</date>
|
|
||||||
<summary>
|
|
||||||
Module that provides methods to access the Windream ECM
|
|
||||||
</summary>
|
|
||||||
<dependencies>
|
|
||||||
NLog, >= 4.5.8
|
|
||||||
</dependencies>
|
|
||||||
<params>
|
|
||||||
LogConfig, DigitalData.Modules.Logging.LogConfig
|
|
||||||
The LogFactory containing the current log config. Used to instanciate the class logger for this and any dependent class
|
|
||||||
|
|
||||||
ClientDriveLetter, String
|
|
||||||
Drive Letter of the Windream Drive, should default to `W`
|
|
||||||
|
|
||||||
ClientSupport64Bit, Boolean
|
|
||||||
Should this session support 64bit methods/functionality?
|
|
||||||
|
|
||||||
SessionReconnect, Boolean
|
|
||||||
Should the session reconnect automatically when the connection to the server is lost?
|
|
||||||
|
|
||||||
SessionServerName, String
|
|
||||||
Name of the server used in the connection. If this is `Nothing`, the current server defined in the client is used
|
|
||||||
|
|
||||||
SessionUserName, String
|
|
||||||
Name of the user that is used in the connection. If this is `Nothing`, the currently signed in user is used
|
|
||||||
|
|
||||||
SessionPassword, String
|
|
||||||
User-password that is used in the connection. If this is `Nothing`, the currently signed in user is used
|
|
||||||
|
|
||||||
SessionDomain, String
|
|
||||||
User-domain that is used in the connection. If this is `Nothing`, the currently signed in user is used
|
|
||||||
</params>
|
|
||||||
<props>
|
|
||||||
ClientDriveLetter, String (readonly)
|
|
||||||
ClientSupports64Bit, Boolean (readonly)
|
|
||||||
Session, IWMSession2 (readonly)
|
|
||||||
SessionLoggedin, Boolean (readonly)
|
|
||||||
SessionReconnect, Boolean (readonly)
|
|
||||||
SessionServername, String (readonly)
|
|
||||||
Objecttypes, List(Of String) (readonly)
|
|
||||||
</props>
|
|
||||||
<example>
|
|
||||||
_windream = New ConnectionBuilder(LogConfig).
|
|
||||||
WithDriveLetter("W").
|
|
||||||
WithSessionReconnect().
|
|
||||||
With64BitSupport().
|
|
||||||
WithServerName("sdd-vmx02-aps01").
|
|
||||||
Connect()
|
|
||||||
</example>
|
|
||||||
<remarks>
|
|
||||||
This class should not be instanciated directly. Instead, ConnectionBuilder should be used.
|
|
||||||
</remarks>
|
|
||||||
</member>
|
|
||||||
<member name="P:DigitalData.Modules.Windream.Windream.ObjectTypes">
|
|
||||||
<returns>A list of object types that are available</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.#ctor(DigitalData.Modules.Logging.LogConfig,System.Boolean,System.String,System.String,System.Boolean,System.String,System.String,System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Creates a new Windream object and connects to a server with the provided options and credentials
|
|
||||||
</summary>
|
|
||||||
<param name="LogConfig"></param>
|
|
||||||
<param name="SessionReconnect"></param>
|
|
||||||
<param name="ClientDriveLetter"></param>
|
|
||||||
<param name="ClientSupport64Bit"></param>
|
|
||||||
<param name="SessionServerName"></param>
|
|
||||||
<param name="SessionUserName"></param>
|
|
||||||
<param name="SessionPassword"></param>
|
|
||||||
<param name="SessionDomain"></param>
|
|
||||||
<exception cref="T:DigitalData.Modules.Windream.Exceptions.SessionException"></exception>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.NewLifecycle_Period(System.String,System.DateTime,System.Double,System.String)">
|
|
||||||
<summary>
|
|
||||||
changes the archive end date
|
|
||||||
</summary>
|
|
||||||
<param name="wmfilepath">WM Filepath</param>
|
|
||||||
<param name="date_period">number/count of period (if </param>
|
|
||||||
<param name="date_unit">date_unity (d,m,y or day(s),month(s),years(s)</param>
|
|
||||||
<param name="dateFrom_value">dateFrom_value</param>
|
|
||||||
<returns>Returns true when date was set, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.NewLifecycle_PeriodTEST(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
changes the archive end date
|
|
||||||
</summary>
|
|
||||||
<param name="wmfilepath">WM Filepath</param>
|
|
||||||
<param name="date_period">number/count of period (if </param>
|
|
||||||
<param name="date_unit">date_unity (d,m,y or day(s),month(s),years(s)</param>
|
|
||||||
<param name="dateFrom_value">dateFrom_value</param>
|
|
||||||
<returns>Returns true when date was set, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.SetArchive_Active(WINDREAMLib.WMObject)">
|
|
||||||
<summary>
|
|
||||||
Archives windream object immediately
|
|
||||||
</summary>
|
|
||||||
<returns>Returns true when archiving was set, false if not</returns>
|
|
||||||
<remarks></remarks>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.GetSearchDocuments(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Returns the result of a search file
|
|
||||||
</summary>
|
|
||||||
<param name="SearchFilePath">Path of a search file (*.wdf)</param>
|
|
||||||
<param name="DocIdIndexName">Index containing the Document-ID</param>
|
|
||||||
<returns>A datatable of the results with columns PATH and DOCID</returns>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.GetVektorData_Combined(WINDREAMLib.WMObject,System.String,System.Object,System.Boolean)">
|
|
||||||
<summary>
|
|
||||||
Gets an array of the actual vektorvalues of index, collated with the passed values
|
|
||||||
</summary>
|
|
||||||
<param name="WindreamObject">windream-file as WMObject</param>
|
|
||||||
<param name="IndexName">Indexname as String</param>
|
|
||||||
<param name="NewValues">The new values as Array</param>
|
|
||||||
<param name="CheckDuplikat">True if duplicates shall be prevented</param>
|
|
||||||
<exception cref="T:DigitalData.Modules.Windream.Exceptions.SessionException"></exception>
|
|
||||||
</member>
|
|
||||||
<member name="M:DigitalData.Modules.Windream.Windream.SetFolderObjecttype(System.String,System.String)">
|
|
||||||
<summary>
|
|
||||||
Sets objecttype of a folder
|
|
||||||
</summary>
|
|
||||||
<param name="FolderPath"></param>
|
|
||||||
<param name="Objecttype"></param>
|
|
||||||
<returns></returns>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
Binary file not shown.
@ -1,250 +0,0 @@
|
|||||||
2020-04-03 09:40:08|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [1] -Mode@IMPV
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 09:40:08|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Preparing to stream file from E:\TEMP\TEST.pdf to ImportWIDIG\Testfile~4.pdf
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Creating WMObject for file ImportWIDIG\Testfile~4.pdf
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Opening stream for ImportWIDIG\Testfile~4.pdf
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Creating FileIO
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Streaming file...
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Content of file was transferred!
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Closing Stream
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Saving new object
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> Unlocking new object
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:09|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:09|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> [1] -Mode@IMPO
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:46:15|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:46:15|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:46:15|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 09:46:16|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 09:46:16|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 09:46:57|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Preparing to stream file from E:\TEMP\TEST.pdf to ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Creating WMObject for file ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Opening stream for ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Creating FileIO
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Streaming file...
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Content of file was transferred!
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Closing Stream
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Saving new object
|
|
||||||
2020-04-03 09:47:08|Windream|DEBUG >> Unlocking new object
|
|
||||||
2020-04-03 09:47:16|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:16|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:16|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:16|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:16|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:47:16|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> [1] -Mode@Impv
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:51:41|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:51:41|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:51:41|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:51:41|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:51:41|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:41|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 09:51:42|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 09:51:42|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Preparing to stream file from E:\TEMP\TEST.pdf to ImportWIDIG\Testfile~2.pdf
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Creating WMObject for file ImportWIDIG\Testfile~2.pdf
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Opening stream for ImportWIDIG\Testfile~2.pdf
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Creating FileIO
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Streaming file...
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Content of file was transferred!
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Closing Stream
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Saving new object
|
|
||||||
2020-04-03 09:51:42|Windream|DEBUG >> Unlocking new object
|
|
||||||
2020-04-03 09:51:46|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:46|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:47|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:47|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:47|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:47|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:54:01|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [1] -Mode@Test
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:54:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:54:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 09:54:02|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [1] -Mode@Test
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 09:56:36|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:56:36|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 09:56:36|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 10:01:21|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [1] -Mode@Test
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 10:01:22|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:01:22|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 10:01:22|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 10:02:09|Form1|DEBUG >> [5] Arguments will be checked...
|
|
||||||
2020-04-03 10:02:09|Form1|DEBUG >> [0] -Mode@impv
|
|
||||||
2020-04-03 10:02:09|Form1|DEBUG >> [1] -Source@"E:\TEMP\TEST.pdf"
|
|
||||||
2020-04-03 10:03:20|Form1|DEBUG >> [5] Arguments will be checked...
|
|
||||||
2020-04-03 10:03:20|Form1|DEBUG >> [0] -Mode@impv
|
|
||||||
2020-04-03 10:03:20|Form1|DEBUG >> [1] -Source@"E:\TEMP\TEST.pdf"
|
|
||||||
2020-04-03 10:04:07|Form1|DEBUG >> [5] Arguments will be checked...
|
|
||||||
2020-04-03 10:05:50|Form1|DEBUG >> [5] Arguments will be checked...
|
|
||||||
2020-04-03 10:05:50|Form1|DEBUG >> [0] -Mode@impv
|
|
||||||
2020-04-03 10:05:50|Form1|DEBUG >> [1] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 10:05:50|Form1|DEBUG >> [2] -Target@"W:\ImportWIDIG\Testfile.pdf"
|
|
||||||
2020-04-03 10:05:50|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:05:50|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:05:50|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:05:50|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:05:50|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 10:05:50|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:05:50|Form1|DEBUG >> [3] -WMOT@"DIGITAL DATA - Entwicklung"
|
|
||||||
2020-04-03 10:05:51|Form1|DEBUG >> [4] -index@{"Integer 23"=4711;"String 38"=WeDigNoWIDig;"Boolean 04"=false}
|
|
||||||
2020-04-03 10:05:51|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Preparing to stream file from E:\TEMP\TEST.pdf to ImportWIDIG\Testfile~3.pdf
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Creating WMObject for file ImportWIDIG\Testfile~3.pdf
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Opening stream for ImportWIDIG\Testfile~3.pdf
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Creating FileIO
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Streaming file...
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Content of file was transferred!
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Closing Stream
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Saving new object
|
|
||||||
2020-04-03 10:05:58|Windream|DEBUG >> Unlocking new object
|
|
||||||
2020-04-03 10:06:27|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:06:27|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:06:40|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:06:40|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:07:09|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:07:09|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:07:52|Form1|DEBUG >> [5] Arguments will be checked...
|
|
||||||
2020-04-03 10:07:52|Form1|DEBUG >> [0] -Mode@impv
|
|
||||||
2020-04-03 10:07:52|Form1|DEBUG >> [1] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 10:07:52|Form1|DEBUG >> [2] -Target@"W:\ImportWIDIG\Testfile.pdf"
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:07:52|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:07:52|Form1|DEBUG >> [3] -WMOT@"DIGITAL DATA - Entwicklung"
|
|
||||||
2020-04-03 10:07:53|Form1|DEBUG >> [4] -index@{"Integer 23"=4711;"String 38"=WeDigNoWIDig;"Boolean 04"=false}
|
|
||||||
2020-04-03 10:07:53|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Preparing to stream file from E:\TEMP\TEST.pdf to ImportWIDIG\Testfile~4.pdf
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Creating WMObject for file ImportWIDIG\Testfile~4.pdf
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Opening stream for ImportWIDIG\Testfile~4.pdf
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Creating FileIO
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Streaming file...
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Content of file was transferred!
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Closing Stream
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Saving new object
|
|
||||||
2020-04-03 10:07:56|Windream|DEBUG >> Unlocking new object
|
|
||||||
2020-04-03 10:08:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> [1] -Mode@IMPV
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:08:34|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:34|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 10:08:35|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 10:08:35|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Preparing to stream file from E:\TEMP\TEST.pdf to ImportWIDIG\Testfile~5.pdf
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Creating WMObject for file ImportWIDIG\Testfile~5.pdf
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Opening stream for ImportWIDIG\Testfile~5.pdf
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Creating FileIO
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Streaming file...
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Content of file was transferred!
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Closing Stream
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Saving new object
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> Unlocking new object
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [1] -Mode@NI
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 10:25:02|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:25:02|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> Initializing MainForm....
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> windream initialisiert
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> [0] E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> [1] -Mode@Test
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> [2] -Source@E:\TEMP\TEST.pdf
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> [3] -Target@W:\ImportWIDIG\Testfile.pdf
|
|
||||||
2020-04-03 10:33:24|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:33:24|Windream|DEBUG >> oNormalizedPath: [ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 10:33:24|Form1|DEBUG >> [4] -WMOT@DIGITAL DATA - Entwicklung
|
|
||||||
2020-04-03 10:33:25|Form1|DEBUG >> [5] -index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=false}
|
|
||||||
2020-04-03 10:33:25|Form1|DEBUG >> [3] Indices transmitted...
|
|
||||||
@ -1,3 +0,0 @@
|
|||||||
2020-04-03 10:02:09|Form1|WARN >> Parser@Sourcefile - File ["E:\TEMP\TEST.pdf"] is not existing!
|
|
||||||
2020-04-03 10:03:38|Form1|WARN >> Parser@Sourcefile - File ["E:\TEMP\TEST.pdf"] is not existing!
|
|
||||||
2020-04-03 10:04:36|Form1|WARN >> Error while indexing: Illegales Zeichen im Pfad.
|
|
||||||
@ -1,183 +0,0 @@
|
|||||||
2020-04-03 09:25:50|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:25:50|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 09:26:11|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 09:26:43|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 09:26:44|Windream|INFO >> File 'ImportWIDIG\Testfile~3.pdf' was streamed.
|
|
||||||
2020-04-03 09:26:44|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 09:26:44|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~3.pdf]! Now indexing...
|
|
||||||
2020-04-03 09:26:44|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 09:26:44|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 09:26:44|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [0]
|
|
||||||
2020-04-03 09:26:44|Form1|INFO >> Index could not be set...
|
|
||||||
2020-04-03 09:26:44|Windream|INFO >> Deleting WMObject [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 09:26:44|Windream|INFO >> [RemoveFile] - File [ImportWIDIG\Testfile~3.pdf] has been deleted!
|
|
||||||
2020-04-03 09:26:44|Form1|INFO >> File deleted after error!
|
|
||||||
2020-04-03 09:39:32|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:39:32|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 09:39:32|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 09:39:33|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 09:39:33|Windream|INFO >> File 'ImportWIDIG\Testfile~3.pdf' was streamed.
|
|
||||||
2020-04-03 09:39:33|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 09:39:33|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~3.pdf]! Now indexing...
|
|
||||||
2020-04-03 09:39:33|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 09:39:33|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 09:39:33|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [true]
|
|
||||||
2020-04-03 09:39:33|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 09:40:08|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 09:40:08|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> File 'ImportWIDIG\Testfile~4.pdf' was streamed.
|
|
||||||
2020-04-03 09:40:08|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 09:40:08|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~4.pdf]! Now indexing...
|
|
||||||
2020-04-03 09:40:08|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 09:40:08|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 09:40:09|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 09:40:09|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 09:46:15|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:46:15|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 09:46:57|Windream|INFO >> Deleting WMObject [W:\ImportWIDIG\Testfile.pdf]
|
|
||||||
2020-04-03 09:46:57|Windream|INFO >> [RemoveFile] - File [W:\ImportWIDIG\Testfile.pdf] has been deleted!
|
|
||||||
2020-04-03 09:47:08|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 09:47:08|Windream|INFO >> File 'ImportWIDIG\Testfile.pdf' was streamed.
|
|
||||||
2020-04-03 09:47:08|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 09:47:16|Form1|INFO >> File successfully streamed to windream [W:\ImportWIDIG\Testfile.pdf]! Now indexing...
|
|
||||||
2020-04-03 09:47:16|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 09:47:16|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 09:47:16|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 09:47:16|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 09:51:41|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:51:41|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 09:51:41|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~2.pdf]
|
|
||||||
2020-04-03 09:51:42|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 09:51:42|Windream|INFO >> File 'ImportWIDIG\Testfile~2.pdf' was streamed.
|
|
||||||
2020-04-03 09:51:42|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 09:51:46|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~2.pdf]! Now indexing...
|
|
||||||
2020-04-03 09:51:46|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 09:51:47|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 09:51:47|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 09:51:47|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 09:54:01|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:54:01|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:54:01|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:54:01|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:54:02|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:54:02|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:54:02|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:54:02|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:54:02|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 09:56:36|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Username:
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 09:56:36|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 10:01:21|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 10:01:21|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 10:01:21|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 10:01:21|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 10:01:22|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 10:01:22|Windream|INFO >> Username:
|
|
||||||
2020-04-03 10:01:22|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 10:01:22|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 10:01:22|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 10:02:09|Form1|WARN >> Parser@Sourcefile - File ["E:\TEMP\TEST.pdf"] is not existing!
|
|
||||||
2020-04-03 10:03:38|Form1|WARN >> Parser@Sourcefile - File ["E:\TEMP\TEST.pdf"] is not existing!
|
|
||||||
2020-04-03 10:04:36|Form1|WARN >> Error while indexing: Illegales Zeichen im Pfad.
|
|
||||||
2020-04-03 10:05:50|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~3.pdf]
|
|
||||||
2020-04-03 10:05:58|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 10:05:58|Windream|INFO >> File 'ImportWIDIG\Testfile~3.pdf' was streamed.
|
|
||||||
2020-04-03 10:05:58|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 10:06:14|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~3.pdf]! Now indexing...
|
|
||||||
2020-04-03 10:06:27|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 10:06:40|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 10:07:03|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 10:07:12|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 10:07:52|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~4.pdf]
|
|
||||||
2020-04-03 10:07:56|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 10:07:56|Windream|INFO >> File 'ImportWIDIG\Testfile~4.pdf' was streamed.
|
|
||||||
2020-04-03 10:07:56|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 10:07:59|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~4.pdf]! Now indexing...
|
|
||||||
2020-04-03 10:08:00|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 10:08:02|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 10:08:02|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 10:08:05|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 10:08:34|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Username:
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 10:08:34|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 10:08:34|Form1|INFO >> Target [ImportWIDIG\Testfile.pdf] already existed!! - NewWMFilename [ImportWIDIG\Testfile~5.pdf]
|
|
||||||
2020-04-03 10:08:35|Windream|INFO >> -----> Start of Block File Stream
|
|
||||||
2020-04-03 10:08:35|Windream|INFO >> File 'ImportWIDIG\Testfile~5.pdf' was streamed.
|
|
||||||
2020-04-03 10:08:35|Windream|INFO >> <----- End of Block
|
|
||||||
2020-04-03 10:08:35|Form1|INFO >> File successfully streamed to windream [ImportWIDIG\Testfile~5.pdf]! Now indexing...
|
|
||||||
2020-04-03 10:08:35|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 10:08:35|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 10:08:35|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 10:08:38|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 10:25:02|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Username:
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 10:25:02|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
2020-04-03 10:25:02|Form1|INFO >> File successfully streamed to windream [W:\ImportWIDIG\Testfile.pdf]! Now indexing...
|
|
||||||
2020-04-03 10:25:02|Form1|INFO >> Setting Index: oIndexName [Integer 23] - oIndexvalue [4711]
|
|
||||||
2020-04-03 10:25:02|Form1|INFO >> Setting Index: oIndexName [String 38] - oIndexvalue [WeDigNoWIDig]
|
|
||||||
2020-04-03 10:25:02|Form1|INFO >> Setting Index: oIndexName [Boolean 04] - oIndexvalue [false]
|
|
||||||
2020-04-03 10:25:05|Form1|INFO >> Import finished!
|
|
||||||
2020-04-03 10:33:24|Form1|INFO >> Config loaded
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Successfully created windream objects
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Servername: sDD-VMP01-APS01
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Servername aquired from client: True
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Impersonated Login: True
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Username:
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Domain:
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Connected..Session created
|
|
||||||
2020-04-03 10:33:24|Windream|INFO >> Connection to sDD-VMP01-APS01 established!
|
|
||||||
Binary file not shown.
File diff suppressed because it is too large
Load Diff
Binary file not shown.
@ -1,18 +0,0 @@
|
|||||||
<?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="WIDIG.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.7.2" />
|
|
||||||
</startup>
|
|
||||||
<userSettings>
|
|
||||||
<WIDIG.My.MySettings>
|
|
||||||
<setting name="TestParams" serializeAs="String">
|
|
||||||
<value>-Mode@IMPV|-Source@E:\TEMP\TEST.pdf|-Target@W:\ImportWIDIG\Testfile.pdf|-WMOT@DIGITAL DATA - Entwicklung|-index@{Integer 23=4711;String 38=WeDigNoWIDig;Boolean 04=0}</value>
|
|
||||||
</setting>
|
|
||||||
</WIDIG.My.MySettings>
|
|
||||||
</userSettings>
|
|
||||||
</configuration>
|
|
||||||
Binary file not shown.
@ -1,26 +0,0 @@
|
|||||||
<?xml version="1.0"?>
|
|
||||||
<doc>
|
|
||||||
<assembly>
|
|
||||||
<name>
|
|
||||||
WIDIG
|
|
||||||
</name>
|
|
||||||
</assembly>
|
|
||||||
<members>
|
|
||||||
<member name="T:WIDIG.My.Resources.Resources">
|
|
||||||
<summary>
|
|
||||||
A strongly-typed resource class, for looking up localized strings, etc.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:WIDIG.My.Resources.Resources.ResourceManager">
|
|
||||||
<summary>
|
|
||||||
Returns the cached ResourceManager instance used by this class.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
<member name="P:WIDIG.My.Resources.Resources.Culture">
|
|
||||||
<summary>
|
|
||||||
Overrides the current thread's CurrentUICulture property for all
|
|
||||||
resource lookups using this strongly typed resource class.
|
|
||||||
</summary>
|
|
||||||
</member>
|
|
||||||
</members>
|
|
||||||
</doc>
|
|
||||||
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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.
Binary file not shown.
@ -1 +0,0 @@
|
|||||||
a7cf69e8e584fe2c16999437687cbd50a5c626a7
|
|
||||||
@ -1,75 +0,0 @@
|
|||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe.config
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.exe
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\WIDIG.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Logging.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\NLog.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Logging.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Logging.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\NLog.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.Form1.resources
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.Resources.resources
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.vbproj.GenerateResource.cache
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.vbproj.CopyComplete
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.exe
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Windream.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Language.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Windream.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Windream.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Language.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Language.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\Interop.WINDREAMLib.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Data.v19.2.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Utils.v19.2.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.XtraBars.v19.2.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.XtraEditors.v19.2.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Printing.v19.2.Core.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Sparkline.v19.2.Core.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Pdf.v19.2.Core.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Data.v19.2.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Utils.v19.2.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.XtraBars.v19.2.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.XtraEditors.v19.2.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Printing.v19.2.Core.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Sparkline.v19.2.Core.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DevExpress.Pdf.v19.2.Core.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.Data.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.Data.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.Data.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.Data.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.Utils.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.Utils.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.Utils.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.Utils.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.XtraBars.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.XtraBars.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.XtraBars.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.XtraBars.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.XtraEditors.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.XtraEditors.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.XtraEditors.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.XtraEditors.v19.2.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.Printing.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.Printing.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.Printing.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.Printing.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.Sparkline.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.Sparkline.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.Sparkline.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.Sparkline.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\de\DevExpress.Pdf.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\es\DevExpress.Pdf.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ja\DevExpress.Pdf.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\ru\DevExpress.Pdf.v19.2.Core.resources.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.exe.licenses
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Config.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Filesystem.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\protobuf-net.dll
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Config.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Config.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Filesystem.pdb
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\DigitalData.Modules.Filesystem.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\bin\Debug\protobuf-net.xml
|
|
||||||
E:\SchreiberM\Visual Studio\GIT\WIDIG\WIDIG\obj\Debug\WIDIG.vbprojAssemblyReference.cache
|
|
||||||
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user