| Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
| previous class next class | frames no frames | |||||
This interface provides functions for reading game specific news and announcements
Engine.OnlineNewsInterface
| Delegates Summary | ||
|---|---|---|
![]() | OnReadContentAnnouncementsCompleted (bool bWasSuccessful) | |
![]() | OnReadGameNewsCompleted (bool bWasSuccessful) | |
| Functions Summary | ||
|---|---|---|
![]() | AddReadContentAnnouncementsCompletedDelegate (delegate<OnReadContentAnnouncementsCompleted> ReadContentAnnouncementsDelegate) | |
![]() | AddReadGameNewsCompletedDelegate (delegate<OnReadGameNewsCompleted> ReadGameNewsDelegate) | |
![]() | ClearReadContentAnnouncementsCompletedDelegate (delegate<OnReadContentAnnouncementsCompleted> ReadContentAnnouncementsDelegate) | |
![]() | ClearReadGameNewsCompletedDelegate (delegate<OnReadGameNewsCompleted> ReadGameNewsDelegate) | |
![]() | string | GetContentAnnouncements (byte LocalUserNum) |
![]() | string | GetGameNews (byte LocalUserNum) |
![]() | bool | ReadContentAnnouncements (byte LocalUserNum) |
![]() | bool | ReadGameNews (byte LocalUserNum) |
| Delegates Detail |
|---|
OnReadContentAnnouncementsCompleted Source codeDelegate used in notifying the UI/game that the content announcements read operation completed
@param bWasSuccessful true if the read completed ok, false otherwise
OnReadGameNewsCompleted Source codeDelegate used in notifying the UI/game that the news read operation completed
@param bWasSuccessful true if the read completed ok, false otherwise
| Functions Detail |
|---|
AddReadContentAnnouncementsCompletedDelegate Source codeSets the delegate used to notify the gameplay code that content announcements reading has completed
@param ReadContentAnnouncementsDelegate the delegate to use for notifications
AddReadGameNewsCompletedDelegate Source codeSets the delegate used to notify the gameplay code that news reading has completed
@param ReadGameNewsDelegate the delegate to use for notifications
ClearReadContentAnnouncementsCompletedDelegate Source codeRemoves the specified delegate from the notification list
@param ReadContentAnnouncementsDelegate the delegate to use for notifications
ClearReadGameNewsCompletedDelegate Source codeRemoves the specified delegate from the notification list
@param ReadGameNewsDelegate the delegate to use for notifications
GetContentAnnouncements Source codeReturns the game specific content announcements from the cache
@param LocalUserNum the local user the content announcements is being read for
@return an empty string if no data was read, otherwise the contents of the read
GetGameNews Source codeReturns the game specific news from the cache
@param LocalUserNum the local user the news is being read for
@return an empty string if no news was read, otherwise the contents of the read
ReadContentAnnouncements Source codeReads the game specific content announcements from the online subsystem
@param LocalUserNum the local user the request is for
@return true if the async task was successfully started, false otherwise
ReadGameNews Source codeReads the game specific news from the online subsystem
@param LocalUserNum the local user the news is being read for
@return true if the async task was successfully started, false otherwise
| Defaultproperties |
|---|
defaultproperties
{
Name="Default__OnlineNewsInterface"
ObjectArchetype=Interface'Core.Default__Interface'
}
|
| Overview | Package | Class | Source | Class tree | Glossary | UnrealScript Documentation |
| previous class next class | frames no frames | |||||