Skip to content
This repository has been archived by the owner on May 1, 2024. It is now read-only.

Update readme-detailed.md #401

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions docs/readme-detailed.md
Original file line number Diff line number Diff line change
Expand Up @@ -261,13 +261,13 @@ The `GetUI()` method returns:
Android:

```csharp
global::Android.Content.Intent ui_object = Auth1.GetUI(this);
global::Android.Content.Intent ui_object = auth.GetUI(this);
```

iOS:

```csharp
UIKit.UIViewController ui_object = Auth1.GetUI();
UIKit.UIViewController ui_object = auth.GetUI();
```

### 2.2 Customizing the UI - Native UI [OPTIONAL]
Expand Down Expand Up @@ -406,7 +406,7 @@ Events are automatically raised by Xamarin.Auth after the process of parsing OAu
to do is to subscribe to the events (`Completed` and `Error`):

```csharp
authenticator.Completed +=
auth.Completed +=
(s, ea) =>
{
StringBuilder sb = new StringBuilder();
Expand All @@ -425,7 +425,7 @@ authenticator.Completed +=
return;
};

authenticator.Error +=
auth.Error +=
(s, ea) =>
{
StringBuilder sb = new StringBuilder();
Expand Down Expand Up @@ -642,6 +642,6 @@ More details about how to compile Xamarin.Auth library and samples can be found
in repository on GitHub.


## DETAILS - More infomration about OAuth
## DETAILS - More information about OAuth

https://developer.xamarin.com/guides/xamarin-forms/cloud-services/authentication/oauth/