AspMvcTemplateAttribute
Namespace:
GSF.Core
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: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: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 { }
}
Project:SharpLib
File:Attribute.AspMvcTemplate.cs
Examples:1
using System;
namespace JetBrains.Annotations
{
[AttributeUsage(AttributeTargets.Parameter)]
internal sealed class AspMvcTemplateAttribute : Attribute
{
}
}
Project:Plants
File:AspMvcTemplateAttribute.cs
Examples:1
using System;
namespace PlantingLib.Properties
{
/// <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:Windows-10-Login-Background-Changer
File:AspMvcTemplateAttribute.cs
Examples:1
using System;
namespace W10_Logon_BG_Changer.Properties
{
/// <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
{
}
}
GSF.Annotations.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()