Navigation
API > API/Plugins > API/Plugins/MultiUserClient
Explains why a change to an object in the stream was invalid.
| Name | UE::MultiUserClient::EPutObjectErrorCode |
| Type | enum |
| Header File | /Engine/Plugins/Developer/Concert/ConcertApp/MultiUserClient/Source/MultiUserClient/Public/Replication/ChangeOperationTypes.h |
| Include Path | #include "Replication/ChangeOperationTypes.h" |
Syntax
namespace UE
{
namespace MultiUserClient
{
enum EPutObjectErrorCode
{
UnresolvedStream,
MissingData,
Count,
}
}
}
Values
| Name | Remarks |
|---|---|
| UnresolvedStream | Stream that the object referenced was not registered on the server. |
| MissingData | Either PutObject contained no data to update with (ensure either ClassPath or Properties is set), or it tried to create a new object with insufficient data (make sure ClassPath and Properties are both specified). |
| Count | Not an actual parameter. Make sure it's always last. |