Class TimerJobRunEventArgs
Event arguments for the TimerJobRun event
Inheritance
System.Object
TimerJobRunEventArgs
Namespace: PnP.Framework.TimerJobs
Assembly: PnP.Framework.dll
Syntax
public class TimerJobRunEventArgs : EventArgs
Fields
ConfigurationData
Declaration
public string ConfigurationData
Field Value
|
System.String
|
CurrentRunSuccessful
Declaration
public bool? CurrentRunSuccessful
Field Value
|
System.Nullable<System.Boolean>
|
PreviousRun
Declaration
public DateTime? PreviousRun
Field Value
|
System.Nullable<DateTime>
|
PreviousRunSuccessful
Declaration
public bool? PreviousRunSuccessful
Field Value
|
System.Nullable<System.Boolean>
|
PreviousRunVersion
Declaration
public string PreviousRunVersion
Field Value
|
System.String
|
Properties
Declaration
public Dictionary<String, String> Properties
Field Value
|
Dictionary<String, String>
|
SiteClientContext
Declaration
public ClientContext SiteClientContext
Field Value
|
ClientContext
|
TenantClientContext
Declaration
public ClientContext TenantClientContext
Field Value
|
ClientContext
|
Url
Declaration
public string Url
Field Value
|
System.String
|
WebClientContext
Declaration
public ClientContext WebClientContext
Field Value
|
ClientContext
|
Methods
DeleteProperty(String)
Deletes a property from the custom property list
Declaration
public void DeleteProperty(string propertyKey)
Parameters
|
System.String
propertyKey
Name of the property to delete |
GetProperty(String)
Gets a property from the custom properties list
Declaration
public string GetProperty(string propertyKey)
Parameters
|
System.String
propertyKey
Key of the property to retrieve |
Returns
|
System.String
Value of the requested property |
SetProperty(String, String)
Adds or updates a property in the custom properties list
Declaration
public void SetProperty(string propertyKey, string propertyValue)
Parameters
|
System.String
propertyKey
Key of the property to add or update |
|
System.String
propertyValue
Value of the property to add or update |