Changes
this.CodedNamespace = "System.MyPlugin";
this.CodedDescription = "My classification";
}
}
#endregion System Classifications
// ...
}
public override UBIKClassList<SelectiveList> DefineSystemSelectiveLists(UBIKEnvironment environment)
{
fromEnum.SetUID(GuidUtility.SLFROMENUM);
}
#endregion System Selective Lists
// ...
}
{
// ...
public override void PreProcessDatabaseUpdate(Version previousVersion, UBIKEnvironment environment)
{
base.PreProcessDatabaseUpdate(previousVersion, environment);
// This code will be executed whenever the system is upgraded,
}
{
base.PostProcessDatabaseUpdate(previousVersion, environment);
// This code will be executed whenever the system is upgraded,
}
public override void InitializeSystemContent(UBIKEnvironment env)
{
// This code will be executed whenever the system is initialized,
}
public override void UpdateSystemContent(UBIKEnvironment env)
{
// This code will be executed whenever the system is upgraded,
// ...
}
