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
Fix the build.
[castle.git]
/
Experiments
/
Castle.Igloo
/
Castle.Igloo.Test
/
ScopeTest
/
Components
/
PerScopeThreadComponent.cs
blob
3cd8b609089eb5f742f287aa0408f9069050cc09
1
2
using
Castle
.
Igloo
.
Attributes
;
3
4
namespace
Castle
.
Igloo
.
Test
.
ScopeTest
.
Components
5
{
6
[
Scope
(
Scope
=
ScopeType
.
Thread
)]
7
public class
PerScopeThreadComponent
:
IComponent
8
{
9
#region IComponent Members
10
11
public int
ID
12
{
13
get
14
{
15
return
GetHashCode
();
16
}
17
}
18
19
#endregion
20
}
21
}
22