Obsolete, 10

KindNameStateTagSeen fromLast seen
procedureSetToken(var Guid, Text)Pending24.02426, gone
Use SetToken with paramaters declared as SecretText instead.
procedureGetToken(Guid)Pending24.02426, gone
Use GetToken with paramaters declared as SecretText instead.
procedureDeleteToken(Guid)Pending27.02728
This method is being marked as internal. Call IsolatedStorage.Delete from your app.
procedureHasToken(Guid)Pending27.02728
This method is being marked as internal. Call IsolatedStorage.Contains from your app.
procedureRequestAuthorizationCode()Pending27.02728
This method is being marked as internal. Get the Rec."Client ID" from IsolatedStorage, call OAuth20Mgt.GetAuthorizationURLAsSecretText with it, unwrap the result and make a hyperlink.
procedureRequestAccessToken(var Text, Text)Pending27.02728
This method is being marked as internal. Get the client credentials from IsolatedStorage using Rec."Client ID" and Rec."Client Secret", call OAuth20Mgt.RequestAccessToken or implement this yourself, then save the access token with IsolatedStorage.SetEncrypted or IsolatedStorage.Set.
procedureRefreshAccessToken(var Text)Pending27.02728
This method is being marked as internal. Get the refresh token with IsolatedStorage.Get(Rec."Refresh Token"), then call OAuth20Mgt.RefreshAccessToken with it and save the access token with IsolatedStorage.SetEncrypted or IsolatedStorage.Set.
procedureInvokeRequest(Text, var Text, var Text, Boolean)Pending27.02728
This method is being marked as internal. Implement your version of InvokeRequest by getting the Rec."Access Token" from IsolatedStorage, then calling public method OAuth20Mgt.InvokeRequest with it. If you set parameter RetryOnCredentialsFailure to true, you must also subscribe to event OnBeforeRefreshAccessToken raised by OAuth20Setup table and process it with your implementation of RefreshAccessToken and subscribe to OnBeforeInvokeRequest event raised by OAuth20Setup table and process it with your implementation of InvokeRequest (this implementation)
procedureSetToken(var Guid, SecretText)Pending27.02728
This method is being marked as internal. Call IsolatedStorage.SetEncrypted or IsolatedStorage.Set from your app.
procedureGetTokenAsSecretText(Guid)Pending27.02728
This method is being marked as internal. Call IsolatedStorage.Get from your app.