ahmadreza

Stories submitted by ahmadreza

HOW TO propagate WCF Impersonation to COM objects(ahmadreza.com)

submitted by ahmadrezaahmadreza(55) 1 year, 8 months ago

This post is about Security initialization in WCF and enabling impersonation propagation from .Net WCF application to COM method calls. Initially impersonation does not propagate to COM method calls. read more...

add a comment |category: |Views: 5

tags: another

LINQ-To-SQL Uses magic ROW_NUMBER() function(ahmadreza.com)

submitted by ahmadrezaahmadreza(55) 2 years, 9 months ago

About LINQ-TO-SQL which uses ROW_NUMBER() funncton to implement Take and Skip functions read more...

add a comment |category: |Views: 269

tags: another

Code contracts (Part 2): Creating my first project with code contracts(ahmadreza.com)

submitted by ahmadrezaahmadreza(55) 3 years ago

Code Contracts provide a language-agnostic way to express coding assumptions in .NET programs. The contracts take the form of preconditions, postconditions, and object invariants. Contracts act as checked documentation of your external and internal APIs. The contracts are used to improve testing via runtime checking, enable static contract verification, and documentation generation. read more...

add a comment |category: |Views: 11

tags: another

Visual Studio trick: Adding namespace(ahmadreza.com)

submitted by ahmadrezaahmadreza(55) 3 years ago

Adding namespace read more...

add a comment |category: |Views: 19

tags: another

Code contracts (Part 1): Introduction(ahmadreza.com)

submitted by ahmadrezaahmadreza(55) 3 years ago

Code Contracts provide a language-agnostic way to express coding assumptions in .NET programs. The contracts take the form of preconditions, postconditions, and object invariants. Contracts act as checked documentation of your external and internal APIs. The contracts are used to improve testing via runtime checking, enable static contract verification, and documentation generation. read more...

add a comment |category: |Views: 16

tags: another

How to embed other resources like image and css (ahmadreza.com)

submitted by ahmadrezaahmadreza(55) 3 years, 1 month ago

Embedding other resources like Cascade style sheets and images is possible as well as JavaScript file. I wrote "How to embed JavaScript file in an assembly" in previous post. For embedding images you have to do same way with minor changes in accessing resource. You should add you file into your project and change the value of "Build Action" property to "Embedded Resource" read more...

add a comment |category: |Views: 8

tags: another