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

## IParametersProvider Interface

Extracts a flat set of name/value pairs from a response object — the reverse of binding — for delivery as query,
fragment or form\_post parameters\. The transport adapters \(MVC, Minimal API\) share this contract because flattening
a response DTO is framework\-neutral; the implementation lives in the core for the same reason\.

```csharp
public interface IParametersProvider
```

Derived  
↳ [ParametersProvider](https://www.abblix.com/en/docs/api/abblix-oidc-server/Abblix.Oidc.Server.Common.ParametersProvider 'Abblix\.Oidc\.Server\.Common\.ParametersProvider')
### Methods

## IParametersProvider\.GetParameters\(object\) Method {#Abblix.Oidc.Server.Common.Interfaces.IParametersProvider.GetParameters(object)}

Retrieves the parameters as name/value pairs from the specified object\.

```csharp
System.Collections.Generic.IEnumerable<(string name,string? value)> GetParameters(object obj);
```
#### Parameters

###### `obj` [System\.Object](https://learn.microsoft.com/en-us/dotnet/api/system.object 'System\.Object') {#Abblix.Oidc.Server.Common.Interfaces.IParametersProvider.GetParameters(object).obj}

The object to extract parameters from\.

#### Returns
[System\.Collections\.Generic\.IEnumerable&lt;](https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.ienumerable-1 'System\.Collections\.Generic\.IEnumerable\`1')[&lt;](https://learn.microsoft.com/en-us/dotnet/api/system.valuetuple 'System\.ValueTuple')[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')[,](https://learn.microsoft.com/en-us/dotnet/api/system.valuetuple 'System\.ValueTuple')[System\.String](https://learn.microsoft.com/en-us/dotnet/api/system.string 'System\.String')[&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.valuetuple 'System\.ValueTuple')[&gt;](https://learn.microsoft.com/en-us/dotnet/api/system.collections.generic.ienumerable-1 'System\.Collections\.Generic\.IEnumerable\`1')  
The parameter name/value pairs\.
