Class ParticleUpgradeTrace.TracedFunction
Namespace: ValveResourceFormat.Particles.Upgrade
Assembly: ValveResourceFormat.dll
One traced function entry: the class name after upgrading, the stored class name when the chain renamed the entry, and whether the chain removed the entry entirely.
csharp
public sealed record ParticleUpgradeTrace.TracedFunction : IEquatable<ParticleUpgradeTrace.TracedFunction>Inheritance
object ← ParticleUpgradeTrace.TracedFunction
Implements
IEquatable<ParticleUpgradeTrace.TracedFunction>
Constructors
TracedFunction(string, string?, bool)
One traced function entry: the class name after upgrading, the stored class name when the chain renamed the entry, and whether the chain removed the entry entirely.
csharp
public TracedFunction(string Class, string? OriginalClass, bool RemovedByUpgrade)Parameters
Class string
OriginalClass string?
RemovedByUpgrade bool
Properties
Class
csharp
public string Class { get; init; }Property Value
OriginalClass
csharp
public string? OriginalClass { get; init; }Property Value
RemovedByUpgrade
csharp
public bool RemovedByUpgrade { get; init; }
