Class TransformationLogAnalysis
Transformation analysis report
Inheritance
System.Object
TransformationLogAnalysis
Namespace: PnP.Framework.Modernization.Entities
Assembly: PnP.Framework.dll
Syntax
public class TransformationLogAnalysis : object
Constructors
TransformationLogAnalysis()
Constructor for transformation report
Declaration
public TransformationLogAnalysis()
Properties
AssetsTransferred
Log entries for the transferred assets
Declaration
public List<Tuple<LogLevel, LogEntry>> AssetsTransferred { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|
BaseSourceUrl
Base source url
Declaration
public string BaseSourceUrl { get; set; }
Property Value
System.String
|
BaseTargetUrl
Base target url
Declaration
public string BaseTargetUrl { get; set; }
Property Value
System.String
|
CriticalErrors
List of critical application error
Declaration
public List<Tuple<LogLevel, LogEntry>> CriticalErrors { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|
Errors
List of errors raised
Declaration
public List<Tuple<LogLevel, LogEntry>> Errors { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|
IsFirstAnalysis
Indication if this was the first transformation report added
Declaration
public bool IsFirstAnalysis { get; set; }
Property Value
System.Boolean
|
PageId
ID used to group entries by transformed page
Declaration
public string PageId { get; set; }
Property Value
System.String
|
PageLogsOrdered
Page Logs ordered
Declaration
public List<Tuple<LogLevel, LogEntry>> PageLogsOrdered { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|
ReportDate
Date report generated
Declaration
public DateTime ReportDate { get; set; }
Property Value
DateTime
|
SourcePage
Source page name
Declaration
public string SourcePage { get; set; }
Property Value
System.String
|
SourceSite
Source site
Declaration
public string SourceSite { get; set; }
Property Value
System.String
|
TargetPage
Target page name
Declaration
public string TargetPage { get; set; }
Property Value
System.String
|
TargetSite
Target site
Declaration
public string TargetSite { get; set; }
Property Value
System.String
|
TransformationDuration
Duration of the page tranformation
Declaration
public TimeSpan TransformationDuration { get; set; }
Property Value
TimeSpan
|
TransformationSettings
List containting the applied transformation settings
Declaration
public List<Tuple<string, string>> TransformationSettings { get; set; }
Property Value
List<Tuple<System.String, System.String>>
|
TransformationVerboseDetails
Logs that contain verbose details of this transformation
Declaration
public List<Tuple<LogLevel, LogEntry>> TransformationVerboseDetails { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|
TransformationVerboseSummary
Logs that contain summary data for verbose logging
Declaration
public List<Tuple<LogLevel, LogEntry>> TransformationVerboseSummary { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|
Warnings
List of warnings raised
Declaration
public List<Tuple<LogLevel, LogEntry>> Warnings { get; set; }
Property Value
List<Tuple<LogLevel, LogEntry>>
|