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