a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
61 lines
1.9 KiB
C#
61 lines
1.9 KiB
C#
// Copyright (c) Microsoft Corporation. All rights reserved. See License.txt in the project root for license information.
|
|
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Web.Http.ModelBinding;
|
|
using System.Web.Http.ValueProviders;
|
|
|
|
namespace System.Web.Http.ApiExplorer
|
|
{
|
|
public class ParameterSourceController : ApiController
|
|
{
|
|
public void GetCompleTypeFromUri([FromUri]ComplexType value, string name)
|
|
{
|
|
}
|
|
|
|
public void PostSimpleTypeFromBody([FromBody] string name)
|
|
{
|
|
}
|
|
|
|
public void GetCustomFromUriAttribute([MyFromUriAttribute] ComplexType value, ComplexType bodyValue)
|
|
{
|
|
}
|
|
|
|
public void GetFromHeaderAttribute([FromHeaderAttribute] string value)
|
|
{
|
|
}
|
|
|
|
public class ComplexType
|
|
{
|
|
public int Id { get; set; }
|
|
public string Name { get; set; }
|
|
}
|
|
|
|
private class MyFromUriAttribute : ModelBinderAttribute, IUriValueProviderFactory
|
|
{
|
|
public override IEnumerable<ValueProviderFactory> GetValueProviderFactories(HttpConfiguration configuration)
|
|
{
|
|
var factories = from f in base.GetValueProviderFactories(configuration) where f is IUriValueProviderFactory select f;
|
|
return factories;
|
|
}
|
|
}
|
|
|
|
private class FromHeaderAttribute : ModelBinderAttribute
|
|
{
|
|
public override IEnumerable<ValueProviderFactory> GetValueProviderFactories(HttpConfiguration configuration)
|
|
{
|
|
var factories = new ValueProviderFactory[] { new HeaderValueProvider() };
|
|
return factories;
|
|
}
|
|
}
|
|
|
|
private class HeaderValueProvider : ValueProviderFactory
|
|
{
|
|
public override IValueProvider GetValueProvider(Controllers.HttpActionContext actionContext)
|
|
{
|
|
throw new NotImplementedException();
|
|
}
|
|
}
|
|
}
|
|
}
|