@@ -1051,60 +1051,6 @@ public async Task<PlayFabResult<GetDataReportResult>> GetDataReportAsync(GetData
1051
1051
return new PlayFabResult < GetDataReportResult > { Result = result , CustomData = customData } ;
1052
1052
}
1053
1053
1054
- /// <summary>
1055
- /// Retrieves the details for a specific completed session, including links to standard out and standard error logs
1056
- /// </summary>
1057
- [ Obsolete ( "Use 'MultiplayerServer/GetMultiplayerSessionLogsBySessionId' instead" , true ) ]
1058
- public async Task < PlayFabResult < GetMatchmakerGameInfoResult > > GetMatchmakerGameInfoAsync ( GetMatchmakerGameInfoRequest request , object customData = null , Dictionary < string , string > extraHeaders = null )
1059
- {
1060
- await new PlayFabUtil . SynchronizationContextRemover ( ) ;
1061
-
1062
- var requestContext = request ? . AuthenticationContext ?? authenticationContext ;
1063
- var requestSettings = apiSettings ?? PlayFabSettings . staticSettings ;
1064
- if ( requestSettings . DeveloperSecretKey == null ) throw new PlayFabException ( PlayFabExceptionCode . DeveloperKeyNotSet , "DeveloperSecretKey must be set in your local or global settings to call this method" ) ;
1065
-
1066
- var httpResult = await PlayFabHttp . DoPost ( "/Admin/GetMatchmakerGameInfo" , request , "X-SecretKey" , requestSettings . DeveloperSecretKey , extraHeaders , requestSettings ) ;
1067
- if ( httpResult is PlayFabError )
1068
- {
1069
- var error = ( PlayFabError ) httpResult ;
1070
- PlayFabSettings . GlobalErrorHandler ? . Invoke ( error ) ;
1071
- return new PlayFabResult < GetMatchmakerGameInfoResult > { Error = error , CustomData = customData } ;
1072
- }
1073
-
1074
- var resultRawJson = ( string ) httpResult ;
1075
- var resultData = PluginManager . GetPlugin < ISerializerPlugin > ( PluginContract . PlayFab_Serializer ) . DeserializeObject < PlayFabJsonSuccess < GetMatchmakerGameInfoResult > > ( resultRawJson ) ;
1076
- var result = resultData . data ;
1077
-
1078
- return new PlayFabResult < GetMatchmakerGameInfoResult > { Result = result , CustomData = customData } ;
1079
- }
1080
-
1081
- /// <summary>
1082
- /// Retrieves the details of defined game modes for the specified game server executable
1083
- /// </summary>
1084
- [ Obsolete ( "No longer available" , true ) ]
1085
- public async Task < PlayFabResult < GetMatchmakerGameModesResult > > GetMatchmakerGameModesAsync ( GetMatchmakerGameModesRequest request , object customData = null , Dictionary < string , string > extraHeaders = null )
1086
- {
1087
- await new PlayFabUtil . SynchronizationContextRemover ( ) ;
1088
-
1089
- var requestContext = request ? . AuthenticationContext ?? authenticationContext ;
1090
- var requestSettings = apiSettings ?? PlayFabSettings . staticSettings ;
1091
- if ( requestSettings . DeveloperSecretKey == null ) throw new PlayFabException ( PlayFabExceptionCode . DeveloperKeyNotSet , "DeveloperSecretKey must be set in your local or global settings to call this method" ) ;
1092
-
1093
- var httpResult = await PlayFabHttp . DoPost ( "/Admin/GetMatchmakerGameModes" , request , "X-SecretKey" , requestSettings . DeveloperSecretKey , extraHeaders , requestSettings ) ;
1094
- if ( httpResult is PlayFabError )
1095
- {
1096
- var error = ( PlayFabError ) httpResult ;
1097
- PlayFabSettings . GlobalErrorHandler ? . Invoke ( error ) ;
1098
- return new PlayFabResult < GetMatchmakerGameModesResult > { Error = error , CustomData = customData } ;
1099
- }
1100
-
1101
- var resultRawJson = ( string ) httpResult ;
1102
- var resultData = PluginManager . GetPlugin < ISerializerPlugin > ( PluginContract . PlayFab_Serializer ) . DeserializeObject < PlayFabJsonSuccess < GetMatchmakerGameModesResult > > ( resultRawJson ) ;
1103
- var result = resultData . data ;
1104
-
1105
- return new PlayFabResult < GetMatchmakerGameModesResult > { Result = result , CustomData = customData } ;
1106
- }
1107
-
1108
1054
/// <summary>
1109
1055
/// Get the list of titles that the player has played
1110
1056
/// </summary>
@@ -1977,33 +1923,6 @@ public async Task<PlayFabResult<ListVirtualCurrencyTypesResult>> ListVirtualCurr
1977
1923
return new PlayFabResult < ListVirtualCurrencyTypesResult > { Result = result , CustomData = customData } ;
1978
1924
}
1979
1925
1980
- /// <summary>
1981
- /// Updates the build details for the specified game server executable
1982
- /// </summary>
1983
- [ Obsolete ( "No longer available" , true ) ]
1984
- public async Task < PlayFabResult < ModifyServerBuildResult > > ModifyServerBuildAsync ( ModifyServerBuildRequest request , object customData = null , Dictionary < string , string > extraHeaders = null )
1985
- {
1986
- await new PlayFabUtil . SynchronizationContextRemover ( ) ;
1987
-
1988
- var requestContext = request ? . AuthenticationContext ?? authenticationContext ;
1989
- var requestSettings = apiSettings ?? PlayFabSettings . staticSettings ;
1990
- if ( requestSettings . DeveloperSecretKey == null ) throw new PlayFabException ( PlayFabExceptionCode . DeveloperKeyNotSet , "DeveloperSecretKey must be set in your local or global settings to call this method" ) ;
1991
-
1992
- var httpResult = await PlayFabHttp . DoPost ( "/Admin/ModifyServerBuild" , request , "X-SecretKey" , requestSettings . DeveloperSecretKey , extraHeaders , requestSettings ) ;
1993
- if ( httpResult is PlayFabError )
1994
- {
1995
- var error = ( PlayFabError ) httpResult ;
1996
- PlayFabSettings . GlobalErrorHandler ? . Invoke ( error ) ;
1997
- return new PlayFabResult < ModifyServerBuildResult > { Error = error , CustomData = customData } ;
1998
- }
1999
-
2000
- var resultRawJson = ( string ) httpResult ;
2001
- var resultData = PluginManager . GetPlugin < ISerializerPlugin > ( PluginContract . PlayFab_Serializer ) . DeserializeObject < PlayFabJsonSuccess < ModifyServerBuildResult > > ( resultRawJson ) ;
2002
- var result = resultData . data ;
2003
-
2004
- return new PlayFabResult < ModifyServerBuildResult > { Result = result , CustomData = customData } ;
2005
- }
2006
-
2007
1926
/// <summary>
2008
1927
/// _NOTE: This is a Legacy Economy API, and is in bugfix-only mode. All new Economy features are being developed only for
2009
1928
/// version 2._ Attempts to process an order refund through the original real money payment provider.
0 commit comments