¡@

Home 

c# Programming Glossary: decorated

ASP.NET MVC ambiguous action methods

http://stackoverflow.com/questions/1045316/asp-net-mvc-ambiguous-action-methods

contains public string ValueNames get private set And then decorated the action methods... RequireRouteValues new parentName itemName..

C# internal static extern with InternalCall attribute - internal or external?

http://stackoverflow.com/questions/1211462/c-sharp-internal-static-extern-with-internalcall-attribute-internal-or-externa

externally. However the method declaration is also decorated with a MethodImplOptions.InternalCall attribute which indicates..

Attributes and inheritance

http://stackoverflow.com/questions/1240960/attributes-and-inheritance

are creating can be inherited by sub classes of the class decorated by the attribute. So if you create MyUberAttribute with AttributeUsage..

ASP.NET MVC - How to show unauthorized error on login page?

http://stackoverflow.com/questions/1498727/asp-net-mvc-how-to-show-unauthorized-error-on-login-page

login page In my ASP.NET MVC app I have most controllers decorated with Authorize Roles SomeGroup When a user is not authorized..

Custom Compiler Warnings

http://stackoverflow.com/questions/154109/custom-compiler-warnings

longer be used. If a program uses a type or member that is decorated with the Obsolete attribute the compiler issues a warning or..

Why are Cdecl calls often mismatched in the “standard” P/Invoke Convention?

http://stackoverflow.com/questions/15660722/why-are-cdecl-calls-often-mismatched-in-the-standard-p-invoke-convention

.map file or the Dumpbin.exe exports utility to see the decorated names. The undname.exe SDK utility is very handy to convert..

What tools and techniques do you use to find dead code in .NET?

http://stackoverflow.com/questions/162641/what-tools-and-techniques-do-you-use-to-find-dead-code-in-net

general for .NET or specific to C# yet. In the past I've decorated methods with the Obsolete attribute passing true so the compiler..

Enforce Attribute Decoration of Classes/Methods

http://stackoverflow.com/questions/19454/enforce-attribute-decoration-of-classes-methods

any class matching some given criteria ie subclassing X is decorated appropriately. If you set up your build to run with tests you..

Validating DataAnnotations with Validator class

http://stackoverflow.com/questions/2050161/validating-dataannotations-with-validator-class

with Validator class I'm trying to validate a class decorated with dataannotation with the Validator class . It works fine..

How to set attributes values using reflection

http://stackoverflow.com/questions/2160476/how-to-set-attributes-values-using-reflection

to set attributes values using reflection I have a class decorated with a attribute ... DataEntity MESSAGE_STAGING EnableCaching..

asmx web service returning xml instead of json in .net 4.0

http://stackoverflow.com/questions/2749954/asmx-web-service-returning-xml-instead-of-json-in-net-4-0

fine in asp.net 3.5 for over a year. the webMethod is decorated with the correct attributes... WebMethod ScriptMethod ResponseFormat..

Reflection to Identify Extension Methods

http://stackoverflow.com/questions/299515/reflection-to-identify-extension-methods

the extension method may be defined. Look for classes decorated with ExtensionAttribute and then methods within that class which.. and then methods within that class which are also decorated with ExtensionAttribute . Then check the type of the first parameter..

ELMAH - Exception Logging without having HttpContext

http://stackoverflow.com/questions/2997076/elmah-exception-logging-without-having-httpcontext

aspNetCompatibilityEnabled true system.serviceModel Also decorated my Service with following attribute AspNetCompatibilityRequirements..

How to post an array of complex objects with JSON, jQuery to ASP.NET MVC Controller?

http://stackoverflow.com/questions/320291/how-to-post-an-array-of-complex-objects-with-json-jquery-to-asp-net-mvc-control

result alert result.Result and my controller action is decorated with an custom attribute JsonFilter Param widgets JsonDataType..

How do I atomically swap 2 ints in C#?

http://stackoverflow.com/questions/3855671/how-do-i-atomically-swap-2-ints-in-c

code based upon my suggestion. Variable suffixed _V are decorated as volatile PART 3 process links prepare the new Producer address.ProducerNew.WorkMask_V..

Ninject and MVC3: Dependency injection to action filters

http://stackoverflow.com/questions/5078046/ninject-and-mvc3-dependency-injection-to-action-filters

filterContext and a controller action decorated with it CustomAuthorize public ActionResult Index return View..

Using view models in ASP.NET MVC 3

http://stackoverflow.com/questions/5306655/using-view-models-in-asp-net-mvc-3

A bit of a hack and it requires the domain model to be decorated with System.ComponentModel.DisplayNameAttribute in some cases..

Pure functions in C#

http://stackoverflow.com/questions/592934/pure-functions-in-c-sharp

and immutability and issue compiler warnings if something decorated with those attributes don't follow the rules. Even so we're..

How to inject an attribute using a PostSharp attribute?

http://stackoverflow.com/questions/7851365/how-to-inject-an-attribute-using-a-postsharp-attribute

is a WCF entity or domain object that needs to be decorated with the DataContract attribute. It should also have a Namespace..