Brain.WriteLine();
Ivan Pavlović, MVP For Visual C#
Sign in
|
Join
|
Help
Home
Contact
RSS for Posts
Atom
RSS for Comments
Email Notifications
Go
Search
Go
Tags
.NET
AJAX Toolkit
Arhitektura
ASP.NET
C#
Component Services
GhostDoc
Haba Haba!
Live Witer
MS Community
MS DTC
MVP Summit
Orcas
PageFlow
Plug In
Sinergija 07
Source Safe
Sql Server
TDD
Tech Ed
Vista
Visual Studio
Web 2.0
Web Fu 2007
Windows Workflow
Community
Home
Blogs
Media
Forums
Groups
Archives
September 2008 (1)
June 2008 (1)
April 2008 (5)
March 2008 (5)
February 2008 (1)
January 2008 (2)
December 2007 (5)
November 2007 (4)
October 2007 (6)
July 2007 (1)
May 2007 (1)
February 2007 (4)
January 2007 (2)
Blogroll
Janko's Blog
Erik Sink Weblog
Anton Delsink Blog
The online journal of Rob Howard
Contagious Curiosity
Tomislav Bronzin
Bethesda's blog
Dissident Voice
Quan Ju De
November 2007 - Posts
8
Comments
Event Broker Implementation in C# - Full Source Code and Examples
by
Paki
Here is the full source code for Event Broker Implementation in C#. In zipped file you can find EventBroker with associated tests ans simple sample application that describes how loosely coupled objects can exchange data in any host....
Filed under:
C#
,
Arhitektura
,
Plug In
,
.NET
0
Comments
Simple EventBroker Implementation in C#
by
Paki
Here is the simple implementation of EventBroker service. You can use in your aplications to implement communicationamong loosely connected components like plugins for example. EventBroker follows publisher / subscriber pattern. I am preparing pacakaged...
Filed under:
C#
,
Arhitektura
,
Plug In
,
.NET
0
Comments
How to check if current user is in local admins security group
by
Paki
You can check whether current user belongs to Local Admin Group like this 1. Get reference to current WindowsIdentity WindowsIdentity wi = WindowsIdentity.GetCurrent(); 2. Create WindowsPrincipal using current windows identity WindowsPrincipal wp = new...
Filed under:
C#
,
ASP.NET
,
.NET
0
Comments
How to create Delegates that points to static methods in runtime
by
Paki
One of the less known feature of .NET Reflection enable us to get reference to static methods which name is not known in compile time and to point a delegate at it. In this example we will enumerate and call all static methods of a plugin marked with...
Filed under:
C#
,
Plug In