repo.or.cz
/
castle.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Somehow missed this with earlier checkin of fluent interface.
[castle.git]
/
Experiments
/
Castle.Igloo
/
Castle.Igloo.Test
/
ScopeTest
/
Components
/
SimpleComponent.cs
blob
534546fb6300e5635dbb1882e09104255e0d20a6
1
2
using
Castle
.
Igloo
.
Attributes
;
3
4
namespace
Castle
.
Igloo
.
Test
.
ScopeTest
.
Components
5
{
6
7
[
Scope
(
Scope
=
ScopeType
.
Thread
,
UseProxy
=
true
)]
8
public class
SimpleComponent
:
IComponent
9
{
10
#region IComponent Members
11
12
public int
ID
13
{
14
get
15
{
16
return
99
;
17
}
18
}
19
20
#endregion
21
}
22
}