1 instantiation of AppContainerInfo
System.ServiceModel.NetNamedPipe (1)
System\ServiceModel\Channels\AppContainerInfo.cs (1)
79return new AppContainerInfo(appSession, namedObjectPath);
12 references to AppContainerInfo
System.ServiceModel.NetNamedPipe (12)
System\ServiceModel\Channels\AppContainerInfo.cs (6)
46s_isRunningInAppContainer = AppContainerInfo.RunningInAppContainer(); 60internal static AppContainerInfo CreateAppContainerInfo(string fullName, int sessionId) 71s_currentSessionId = AppContainerInfo.GetCurrentSessionId(); 78string namedObjectPath = AppContainerInfo.GetAppContainerNamedObjectPath(fullName); 87tokenHandle = AppContainerInfo.GetCurrentProcessToken(); 159tokenHandle = AppContainerInfo.GetCurrentProcessToken();
System\ServiceModel\Channels\PipeConnectionInitiator.cs (6)
75AppContainerInfo appInfo = GetAppContainerInfo(transportFactorySettings); 254private static AppContainerInfo GetAppContainerInfo(IPipeTransportFactorySettings transportFactorySettings) 262return AppContainerInfo.CreateAppContainerInfo(appSettings.PackageFullName, appSettings.SessionId); 328private static string BuildPipeName(string pipeGuid) => AppContainerInfo.IsRunningInAppContainer ? string.Concat(PipeLocalPrefix, pipeGuid) : pipeGuid; 353internal string GetPipeName(AppContainerInfo appInfo) 404public static string BuildSharedMemoryName(string hostName, string path, bool global, AppContainerInfo appContainerInfo)