#### [Abblix\.Oidc\.Server\.Mvc](https://www.abblix.com/en/docs/api/abblix-oidc-server-mvc 'index')
### [Abblix\.Oidc\.Server\.Mvc\.Binders](https://www.abblix.com/en/docs/api/abblix-oidc-server-mvc/Abblix.Oidc.Server.Mvc.Binders 'Abblix\.Oidc\.Server\.Mvc\.Binders')

## SpaceSeparatedValuesBinder Class

Binds a single space\-separated request value into a string array\.
Mirrors the wire format used by OAuth 2\.0 / OpenID Connect for parameters such as
`scope`, `response_type`, `prompt`, `acr_values`, and `ui_locales`
\(RFC 6749 § 3\.3 and OIDC Core 1\.0 § 3\.1\.2\.1\)\.

```csharp
public class SpaceSeparatedValuesBinder : Abblix.Oidc.Server.Mvc.Binders.ModelBinderBase
```

Inheritance [System\.Object](https://learn.microsoft.com/en-us/dotnet/api/system.object 'System\.Object') → [ModelBinderBase](https://www.abblix.com/en/docs/api/abblix-oidc-server-mvc/Abblix.Oidc.Server.Mvc.Binders.ModelBinderBase 'Abblix\.Oidc\.Server\.Mvc\.Binders\.ModelBinderBase') → SpaceSeparatedValuesBinder

### Remarks
Tokens are split on the ASCII space character; consecutive spaces produce no empty entries\.
Other whitespace \(tab, newline\) is preserved as part of a token, matching the literal
SP delimiter required by the specifications\.
