1 write to Proxy
Microsoft.Build.Engine.OM.UnitTests (1)
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectTaskElementLink.cs (1)
47this.Proxy = proxy;
9 references to Proxy
Microsoft.Build.Engine.OM.UnitTests (9)
ObjectModelRemoting\RemoteProjectsProviderMock\ConstructionLinkMocks\MockProjectTaskElementLink.cs (9)
53object ILinkMock.Remoter => this.Proxy; 54MockProjectElementLinkRemoter IProjectElementLinkHelper.ElementProxy => this.Proxy; 55MockProjectElementContainerLinkRemoter IProjectElementContainerLinkHelper.ContainerProxy => this.Proxy; 58public override IDictionary<string, string> Parameters => this.Proxy.Parameters; 59public override IEnumerable<KeyValuePair<string, ElementLocation>> ParameterLocations => this.Proxy.ParameterLocations; 60public override string GetParameter(string name) { return this.Proxy.GetParameter(name); } 62public override void SetParameter(string name, string unevaluatedValue) => this.Proxy.SetParameter(name, unevaluatedValue); 63public override void RemoveParameter(string name) => Proxy.RemoveParameter(name); 64public override void RemoveAllParameters() => Proxy.RemoveAllParameters();