2 implementations of IContextProperty
mscorlib (2)
system\runtime\remoting\contextproperty.cs (1)
138
: Attribute, IContextAttribute,
IContextProperty
system\runtime\remoting\lifetimeservices.cs (1)
228
internal class LeaseLifeTimeServiceProperty :
IContextProperty
, IContributeObjectSink
25 references to IContextProperty
mscorlib (25)
system\runtime\remoting\activationservices.cs (3)
656
IContextProperty
prop = list[i] as
IContextProperty
;
684
if (!((
IContextProperty
)list[i]).IsNewContextOK(
system\runtime\remoting\configuration.cs (3)
54
IContextProperty
[] _appDomainProperties;
75
_appDomainProperties = new
IContextProperty
[1];
174
internal
IContextProperty
[] AppDomainContextProperties
system\runtime\remoting\context.cs (13)
61
private
IContextProperty
[] _ctxProps; // array of name-value pairs of properties
120
IContextProperty
[] ctxProps = data.AppDomainContextProperties;
213
public virtual
IContextProperty
GetProperty(String name)
219
IContextProperty
prop = null;
233
public virtual void SetProperty(
IContextProperty
prop)
312
public virtual
IContextProperty
[] ContextProperties
325
IContextProperty
[] retProps = new
IContextProperty
[_numCtxProps];
333
internal static void CheckPropertyNameClash(String name,
IContextProperty
[] props, int count)
346
internal static
IContextProperty
[] GrowPropertiesArray(
IContextProperty
[] props)
350
IContextProperty
[] newProps = new
IContextProperty
[newSize];
system\runtime\remoting\contextproperty.cs (3)
185
IContextProperty
prop = o as
IContextProperty
;
236
ctorMsg.ContextProperties.Add((
IContextProperty
)this);
system\runtime\remoting\synchronizeddispatch.cs (2)
232
ctorMsg.ContextProperties.Add((
IContextProperty
)_cliCtxAttr);
237
ctorMsg.ContextProperties.Add((
IContextProperty
)this);
system\runtime\remoting\urlattribute.cs (1)
49
return (o is
IContextProperty
) && (o is UrlAttribute) &&