ONLINE
ONLINE
#Overview
name: ONLINE
This variable is created as a Console Variable (cvar).
- type:
Exec
- help:
Sorry: Exec commands have no help
It is referenced in 2
C++ source files.
#Summary
#References in C++ code
#Callsites
This variable is referenced in the following C++ source code:
#Loc: <Workspace>/Engine/Plugins/Online/OnlineSubsystemUtils/Source/OnlineSubsystemUtils/Private/OnlineSubsystemUtils.cpp:629
Scope (from outer to inner):
file
function static bool OnlineExec
Source code excerpt:
// Ignore any execs that don't start with ONLINE
if (FParse::Command(&Cmd, TEXT("ONLINE")))
{
FString SubName;
FParse::Value(Cmd, TEXT("Sub="), SubName);
// Allow for either Sub=<platform> or Subsystem=<platform>
if (SubName.Len() > 0)
{
#Loc: <Workspace>/Engine/Plugins/Online/OnlineSubsystemUtils/Source/OnlineSubsystemUtils/Private/Tests/TestSessionInterface.cpp:587
Scope: file
Source code excerpt:
else if (FParse::Command(&Cmd, TEXT("UPDATE")))
{
bool bUpdateOnline = FParse::Command(&Cmd, TEXT("ONLINE")) ? true : false;
OnUpdateSessionCompleteDelegateHandle = SessionInt->AddOnUpdateSessionCompleteDelegate_Handle(OnUpdateSessionCompleteDelegate);
HostSettings->Set(FName(TEXT("UPDATESETTING1")), FString(TEXT("Test1")), EOnlineDataAdvertisementType::ViaOnlineService);
HostSettings->Set(FName(TEXT("UPDATESETTING2")), 99, EOnlineDataAdvertisementType::ViaOnlineService);
SessionInt->UpdateSession(SessionName, *HostSettings, bUpdateOnline);
bWasHandled = true;
}