public
TimeSpan UsableTime
{
get
{
return
(TimeSpan)ShadowProperties["UsableTime"];
}
set
{
ShadowProperties["UsableTime"]=value;
}
}
public
bool EnableTimeout
{
get
{
return
(bool)ShadowProperties["EnableTimeout"];
}
set
{
ShadowProperties["EnableTimeout"]=
value;
}
}
Public
Property UsableTime()
As TimeSpan
Get
Return
CType(ShadowProperties("UsableTime"), TimeSpan)
End
Get
Set(ByVal
Value As TimeSpan)
ShadowProperties("UsableTime")
= Value
End
Set
End
Property
Public
Property EnableTimeout()
As Boolean
Get
Return
CBool(ShadowProperties("EnableTimeout"))
End
Get
Set(ByVal
Value As Boolean)
ShadowProperties("EnableTimeout")
= Value
End
Set
End
Property