ComponentDooExtensionsclass

Backward-compatible extension methods telling users to switch from Run/Stop/IsRunning to RunDoo/StopDoo/IsRunningDoo. These are marked as obsolete and hidden from intellisense to encourage migration, and are extensions so you don't get member variable conflicts.

objectComponentDooExtensions
Namespace
Sandbox
Assembly
Sandbox.Engine
Declaration
public static abstract sealed class Sandbox.ComponentDooExtensions

Methods4

Showing 4 methods

public static bool IsRunning(Sandbox.Component self, Sandbox.Doo doo)PUBLICSTATICOBSOLETE

Obsolete: Use IsRunningDoo instead

ParameterTypeDescription
selfComponent
dooDoo
Returns:bool

public static void Run(Sandbox.Component self, Sandbox.Doo doo, System.Action`1<Sandbox.Doo.Configure> c = null)PUBLICSTATICOBSOLETE

Obsolete: Use RunDoo instead

ParameterTypeDescription
selfComponent
dooDoo
c = nullAction<Configure>
Returns:void

public static void Stop(Sandbox.Component self, Sandbox.Doo doo)PUBLICSTATICOBSOLETE

Obsolete: Use StopDoo instead

ParameterTypeDescription
selfComponent
dooDoo
Returns:void

public static void StopAll(Sandbox.Component self)PUBLICSTATICOBSOLETE

Obsolete: Use StopAllDoo instead

ParameterTypeDescription
selfComponent
Returns:void

On this page