2 writes to Appid
ComSvcConfig (2)
ComplusEndpointConfigContainer.cs (1)
533endpoint.Appid = this.appInfo.ID;
WasEndpointConfigContainer.cs (1)
288endpoint.Appid = appid;
13 references to Appid
ComSvcConfig (13)
ComplusEndpointConfigContainer.cs (2)
123Debug.Assert(endpointConfig.Appid == this.appInfo.ID, "can't add endpoint for a different application"); 568Debug.Assert(endpointConfig.Appid == this.appInfo.ID, "can't remove endpoint for a different application");
EndpointConfigContainer.cs (4)
84if (guid != Appid) 127return Appid.ToString("B").ToUpperInvariant() + "," + Clsid.ToString("B").ToUpperInvariant(); 225if (endpointConfig.Appid == appid) 280string baseServiceAddress = BaseServiceAddress(endpointConfig.Appid, endpointConfig.Clsid, endpointConfig.Iid);
Tool.cs (2)
465if (!applicationToComponents.TryGetValue(config.Appid, out componentToInterfaces)) 468applicationToComponents[config.Appid] = componentToInterfaces;
WasEndpointConfigContainer.cs (5)
82if (endpointConfig.Appid != appid) 103this.svcFileManager.Add(endpointConfig.Appid, endpointConfig.Clsid); 300ToolConsole.WriteWarning(SR.GetString(SR.EndpointNotFoundInSvcFile, endpoint.Appid.ToString("B"), endpoint.Clsid.ToString("B"), endpoint.Iid.ToString("B"), endpoint.BindingName, endpoint.Address)); 377if (NumEndpointsForClsid(config, endpointConfig.Clsid, endpointConfig.Appid) == 0) 380this.svcFileManager.Remove(endpointConfig.Appid, endpointConfig.Clsid);