Class CreateIsolatedWorldCommandSettings
Creates an isolated world for the given frame.
public sealed class CreateIsolatedWorldCommandSettings : ICommand
- Inheritance
-
CreateIsolatedWorldCommandSettings
- Implements
- Inherited Members
Properties
CommandName
Gets the name of the command.
[JsonIgnore]
public string CommandName { get; }
Property Value
FrameId
Id of the frame in which the isolated world should be created.
[JsonPropertyName("frameId")]
public string FrameId { get; set; }
Property Value
GrantUniveralAccess
Whether or not universal access should be granted to the isolated world. This is a powerful option, use with caution.
[JsonPropertyName("grantUniveralAccess")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public bool? GrantUniveralAccess { get; set; }
Property Value
- bool?
WorldName
An optional name which is reported in the Execution Context.
[JsonPropertyName("worldName")]
[JsonIgnore(Condition = JsonIgnoreCondition.WhenWritingDefault)]
public string? WorldName { get; set; }