24 lines
651 B
C#
24 lines
651 B
C#
// Copyright (c) Microsoft Open Technologies, Inc. All rights reserved.
|
|
// Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
|
|
|
|
using System;
|
|
using Microsoft.AspNet.Mvc.ApplicationModels;
|
|
|
|
|
|
namespace ApplicationModelWebSite
|
|
{
|
|
public class ControllerDescriptionAttribute : Attribute, IControllerModelConvention
|
|
{
|
|
private object _value;
|
|
|
|
public ControllerDescriptionAttribute(object value)
|
|
{
|
|
_value = value;
|
|
}
|
|
|
|
public void Apply(ControllerModel model)
|
|
{
|
|
model.Properties["description"] = _value;
|
|
}
|
|
}
|
|
} |