AspMvcTemplateAttribute
Namespace:
Hyperion
We found 10 examples in language CSharp for this search.
You will see 10 fragments of code.
Other methods
Other methods
Project:PKCwithSql
File:AspMvcTemplateAttribute.cs
Examples:1
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AspMvcTemplateAttribute.cs" company="EPAM Systems">
// Copyright 2015
// </copyright>
// <summary>
// Defines the AspMvcTemplateAttribute type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace PKCDashboard.Common.Annotations
{
using System;
/// <summary>
/// ASP.NET MVC attribute. Indicates that a parameter is an MVC template.
/// Use this attribute for custom wrappers similar to
/// <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class AspMvcTemplateAttribute : Attribute { }
}
Project:vodca
File:AspMvcTemplateAttribute.cs
Examples:1
//-----------------------------------------------------------------------------
// <copyright file="AspMvcTemplateAttribute.cs" company="JetBrains">
// Copyright (c) JetBrains. All rights reserved.
// </copyright>
//-----------------------------------------------------------------------------
namespace Vodca.Annotations
{
/// <summary>
/// Re-sharper Annotation
/// </summary>
[System.AttributeUsage(System.AttributeTargets.Parameter)]
public sealed class AspMvcTemplateAttribute : System.Attribute
{
}
}
Project:SPCDecompiled
File:AspMvcTemplateAttribute.cs
Examples:1
using System;
namespace Dissonance
{
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class AspMvcTemplateAttribute : Attribute
{
public AspMvcTemplateAttribute()
{
}
}
}
Project:frmworkPKC
File:AspMvcTemplateAttribute.cs
Examples:1
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AspMvcTemplateAttribute.cs" company="EPAM Systems">
// Copyright 2015
// </copyright>
// <summary>
// Defines the AspMvcTemplateAttribute type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace frmworkPKC.Common.Annotations
{
using System;
/// <summary>
/// ASP.NET MVC attribute. Indicates that a parameter is an MVC template.
/// Use this attribute for custom wrappers similar to
/// <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class AspMvcTemplateAttribute : Attribute { }
}
Project:must_inverter
File:AspMvcTemplateAttribute.cs
Examples:1
// Decompiled with JetBrains decompiler
// Type: Model.Annotations.AspMvcTemplateAttribute
// Assembly: Model, Version=1.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 2D1791FF-7A31-45F0-915A-28D92B8D3864
// Assembly location: D:\Program Files (x86)\CC\PowerMonitor\Model.dll
using System;
namespace Model.Annotations
{
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class AspMvcTemplateAttribute : Attribute
{
}
}
Project:Progress-Bar-MVVM
File:AspMvcTemplateAttribute.cs
Examples:1
// ///////////////////////////////////////////////////////////
// Company:............. Sheasta Development
// Website:............. http://www.sheasta.com
// Solution:............ Progress Bar Test 30
// Project:............. ProgressBar
// File:................ AspMvcTemplateAttribute.cs
// Last Code Cleanup:... 01/18/2021 @ 1:25 PM Using ReSharper
// Review Comment:...... // ✓✓ 01/18/2021 - Review Comment:
// ///////////////////////////////////////////////////////////
namespace ProgressBar.Properties
{
using System;
/// <summary>
/// ASP.NET MVC attribute. Indicates that the marked parameter is an MVC template.
/// Use this attribute for custom wrappers similar to
/// <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>.
/// </summary>
[AttributeUsage(AttributeTargets.Parameter | AttributeTargets.Field | AttributeTargets.Property)]
public sealed class AspMvcTemplateAttribute : Attribute
{
}
}
Project:dll-github
File:AspMvcTemplateAttribute.cs
Examples:1
// Decompiled with JetBrains decompiler
// Type: Dissonance.AspMvcTemplateAttribute
// Assembly: Assembly-CSharp, Version=11.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 51F4D31F-B166-4C43-9BCF-DD08031E944E
// Assembly location: C:\Users\Kostya12rus\Desktop\Cheat\TextureLoger\Assembly-CSharp.dll
using System;
namespace Dissonance
{
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class AspMvcTemplateAttribute : Attribute
{
}
}
Project:dll-github
File:AspMvcTemplateAttribute.cs
Examples:1
// Decompiled with JetBrains decompiler
// Type: Dissonance.AspMvcTemplateAttribute
// Assembly: Assembly-CSharp, Version=11.0.0.0, Culture=neutral, PublicKeyToken=null
// MVID: 51F4D31F-B166-4C43-9BCF-DD08031E944E
// Assembly location: C:\Users\Kostya12rus\Desktop\Cheat\TextureLoger\Assembly-CSharp.dll
using System;
namespace Dissonance
{
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class AspMvcTemplateAttribute : Attribute
{
}
}
Project:itx-flex
File:AspMvcTemplateAttribute.cs
Examples:1
// Decompiled with JetBrains decompiler
// Type: Flex.Annotations.AspMvcTemplateAttribute
// Assembly: Flex.Client, Version=3.8.1.0, Culture=neutral, PublicKeyToken=null
// MVID: 56747C71-E9A4-4DB3-B21A-436758D0FC8C
// Assembly location: C:\Users\Stella\AppData\Local\Arcanic\ITX Flex\Flex.Client.exe
using System;
namespace Flex.Annotations
{
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class AspMvcTemplateAttribute : Attribute
{
}
}
Project:test-style
File:AspMvcTemplateAttribute.cs
Examples:1
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="AspMvcTemplateAttribute.cs" company="EPAM Systems India">
// Copyright 2015
// </copyright>
// <summary>
// Defines the AspMvcTemplateAttribute type.
// </summary>
// --------------------------------------------------------------------------------------------------------------------
namespace Hyper.Common.Annotations
{
using System;
/// <summary>
/// ASP.NET MVC attribute. Indicates that a parameter is an MVC template.
/// Use this attribute for custom wrappers similar to
/// <c>System.ComponentModel.DataAnnotations.UIHintAttribute(System.String)</c>
/// </summary>
[AttributeUsage(AttributeTargets.Parameter)]
public sealed class AspMvcTemplateAttribute : Attribute { }
}
Hyperion.Internal.AspMvcTemplateAttribute : Attribute
Constructors :
public AspMvcTemplateAttribute()Methods :
public Boolean Equals(Object obj = )public Int32 GetHashCode()
public Object get_TypeId()
public Boolean Match(Object obj = )
public Boolean IsDefaultAttribute()
public Type GetType()
public String ToString()