Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to implement C# Rhino Security

I am trying to implement Rhino Security, i have managed to find a couple tutorials but they do not give enough information to completely understand it, i was wondering if anyone knows of a good source where to learn about Rhino Security from. Or sugest alternatives for implementing security with NHibernate.

Is there some sort of documentation for any of the methods / classes within Rhino Security?

like image 485
Michal Ciechan Avatar asked Dec 14 '10 13:12

Michal Ciechan


People also ask

How is C implemented?

C is typically implemented by a C compiler. In that paragraph you could simply replace this accordingly. A reason for the more generic term "implementation" is that a compiler might contain multiple frontends or be made out of different tasks, or there are theoretically other forms than a compiler thinkable.

Can we implement class in C?

The basic idea of implementing a class in C is to group the data for a C object into structs so that you can have any number of objects. The struct is declared in the . h file so that it is shared between the class and its clients. In addition, you usually need a function that initializes the objects in the class.


1 Answers

As far as I know there is no centralized documentation for Rhino.Security. The best tutorial I know is this article by Artur Trosin (even though it's slightly outdated by now). Winecellarmanager is a sample app that uses Rhino.Security. There's also a admin UI for Rhino.Security, reading its source code might help. There was also some talk about integrating Rhino.Security to Who Can Help Me, but I don't know if it was finished. There's also an article about integrating Rhino.Security to S#arp projects.

like image 103
Mauricio Scheffer Avatar answered Oct 25 '22 01:10

Mauricio Scheffer