Test-Projekt
This commit is contained in:
parent
a4eec2896e
commit
dfb01f7719
@ -1,4 +1,5 @@
|
|||||||
Imports System.IO
|
Imports System.Globalization
|
||||||
|
Imports System.IO
|
||||||
Imports System.Security.Cryptography
|
Imports System.Security.Cryptography
|
||||||
Imports DigitalData.Modules.Config
|
Imports DigitalData.Modules.Config
|
||||||
Imports DigitalData.Modules.Database
|
Imports DigitalData.Modules.Database
|
||||||
@ -190,7 +191,11 @@ Public Class Form1
|
|||||||
|
|
||||||
WriteLog("Valid Properties: [{0}]", oResult2.ValidProperties.Count)
|
WriteLog("Valid Properties: [{0}]", oResult2.ValidProperties.Count)
|
||||||
For Each Prop In oResult2.ValidProperties
|
For Each Prop In oResult2.ValidProperties
|
||||||
|
If Prop.Value.Length > 250 Then
|
||||||
|
WriteLog("Property: [{0}] = [{1}]", Prop.Description, Prop.Value.Substring(0, 250))
|
||||||
|
Else
|
||||||
WriteLog("Property: [{0}] = [{1}]", Prop.Description, Prop.Value)
|
WriteLog("Property: [{0}] = [{1}]", Prop.Description, Prop.Value)
|
||||||
|
End If
|
||||||
Next
|
Next
|
||||||
|
|
||||||
WriteLog("Missing Properties: [{0}]", oResult2.MissingProperties.Count)
|
WriteLog("Missing Properties: [{0}]", oResult2.MissingProperties.Count)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user