102 references to Concat
aspire (1)
Commands\PsCommand.cs (1)
296return string.Concat(appHost.AppHostPath, "\0", appHost.AppHostPid.ToString(CultureInfo.InvariantCulture));
Aspire.Confluent.Kafka (3)
src\Vendoring\OpenTelemetry.Instrumentation.ConfluentKafka\InstrumentedConsumer.cs (1)
354: string.Concat(topicPartitionOffset!.Topic, " ", ConfluentKafkaCommon.ReceiveOperationName);
src\Vendoring\OpenTelemetry.Instrumentation.ConfluentKafka\InstrumentedProducer.cs (1)
332var spanName = string.Concat(topic, " ", ConfluentKafkaCommon.PublishOperationName);
src\Vendoring\OpenTelemetry.Instrumentation.ConfluentKafka\OpenTelemetryConsumeResultExtensions.cs (1)
152: string.Concat(topicPartitionOffset!.Topic, " ", ConfluentKafkaCommon.ProcessOperationName);
dotnet (1)
Commands\Test\VSTest\VSTestArgumentConverter.cs (1)
233newArgList.Add(string.Concat(activeArgument, ":", arg));
dotnet-svcutil-lib (20)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (1)
4053return String.Concat(qname.prefix, ":", qname.localname);
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathNode.cs (1)
104return string.Concat(Prefix, ":", LocalName);
FrameworkFork\Microsoft.Xml\Xml\Core\ValidatingReaderNodeData.cs (1)
90_nameWPrefix = nameTable.Add(string.Concat(_prefix, ":", _localName));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (2)
120return NameTable.Add(string.Concat(Prefix, ":", LocalName)); 1894dumpFileName = Path.GetFullPath(string.Concat(dumpFileNameBase, i.ToString(), ".bmx"));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlSubtreeReader.cs (1)
1316_nsAttributes[index].Set(XmlNodeType.Attribute, prefix, _xmlns, reader.NameTable.Add(string.Concat(_xmlns, ":", prefix)), _xmlnsUri, ns);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (1)
563InitStringInput((context == null) ? string.Empty : context.BaseURI, Encoding.Unicode, string.Concat("<?xml ", xmlFragment, "?>"));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (1)
680nameWPrefix = nt.Add(string.Concat(prefix, ":", localName));
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (1)
437throw new XmlException(ResXml.Xml_DupAttributeName, attr.Prefix.Length == 0 ? attr.LocalName : string.Concat(attr.Prefix, ":", attr.LocalName));
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (1)
97string n = string.Concat(_prefix, ":", _localName);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (1)
2769return (ns.Length != 0) ? string.Concat(ns, ":", localName) : localName;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlValueConverter.cs (1)
857return (prefix.Length != 0) ? string.Concat(prefix, ":", qname.Name) : qname.Name;
FrameworkFork\Microsoft.Xml\Xml\XmlQualifiedName.cs (1)
106return Namespace.Length == 0 ? Name : string.Concat(Namespace, ":", Name);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigator.cs (1)
1410return string.Concat("xmlns=\"", Value, "\"");
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseWriter.cs (1)
820WriteAttributeText(string.Concat(prefix, ":", namespaceUri.Value));
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlExceptionHelper.cs (1)
57return string.Concat(prefix, ":", localName);
FrameworkFork\System.ServiceModel\Internals\FxTrace.cs (1)
60s_eventSourceName = string.Concat(baseEventSourceName, " ", EventSourceVersion);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransportSecurityHelpers.cs (1)
317uriBuilder.Host = string.Concat("[", ipv6Host, "]");
Shared\Options\OptionValueParser.cs (1)
240throw new ArgumentException(string.Concat(invalidValueError, " ", supportedValues));
Shared\Utilities\Utilities.cs (1)
43message.Append(string.Concat(Environment.NewLine, exMsg, includeStackTrace ? e.StackTrace : string.Empty));
dotnet-user-jwts (1)
Helpers\ConsoleTable.cs (1)
117outputRow = string.Concat(outputRow, rows[i][j], new string(' ', columnLengths[j] - rows[i][j].Length));
ilc (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\HelperExtensions.cs (1)
126@namespace.Length > 0 ? string.Concat(Encoding.UTF8.GetString(@namespace), ".", Encoding.UTF8.GetString(name)) : Encoding.UTF8.GetString(name),
ILCompiler.Compiler (3)
src\runtime\src\coreclr\tools\Common\Compiler\ProcessLinkerXmlBase.cs (2)
441foreach (EventPseudoDesc @event in type.GetEventsOnTypeHierarchy(e => string.Concat(CecilTypeNameFormatter.Instance.FormatName(e.AddMethod.Signature[0]), " ", e.Name) == signature)) 497foreach (PropertyPseudoDesc property in type.GetPropertiesOnTypeHierarchy(p => string.Concat(CecilTypeNameFormatter.Instance.FormatName(p.Signature.ReturnType), " ", p.Name) == signature))
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\HelperExtensions.cs (1)
126@namespace.Length > 0 ? string.Concat(Encoding.UTF8.GetString(@namespace), ".", Encoding.UTF8.GetString(name)) : Encoding.UTF8.GetString(name),
ILCompiler.ReadyToRun (3)
src\runtime\src\coreclr\tools\Common\Compiler\ProcessLinkerXmlBase.cs (2)
441foreach (EventPseudoDesc @event in type.GetEventsOnTypeHierarchy(e => string.Concat(CecilTypeNameFormatter.Instance.FormatName(e.AddMethod.Signature[0]), " ", e.Name) == signature)) 497foreach (PropertyPseudoDesc property in type.GetPropertiesOnTypeHierarchy(p => string.Concat(CecilTypeNameFormatter.Instance.FormatName(p.Signature.ReturnType), " ", p.Name) == signature))
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\HelperExtensions.cs (1)
126@namespace.Length > 0 ? string.Concat(Encoding.UTF8.GetString(@namespace), ".", Encoding.UTF8.GetString(name)) : Encoding.UTF8.GetString(name),
ILCompiler.RyuJit (1)
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\HelperExtensions.cs (1)
126@namespace.Length > 0 ? string.Concat(Encoding.UTF8.GetString(@namespace), ".", Encoding.UTF8.GetString(name)) : Encoding.UTF8.GetString(name),
ILCompiler.TypeSystem (2)
src\runtime\src\coreclr\tools\Common\TypeSystem\IL\HelperExtensions.cs (1)
126@namespace.Length > 0 ? string.Concat(Encoding.UTF8.GetString(@namespace), ".", Encoding.UTF8.GetString(name)) : Encoding.UTF8.GetString(name),
src\runtime\src\coreclr\tools\Common\TypeSystem\RuntimeDetermined\RuntimeDeterminedType.Diagnostic.cs (1)
20return string.Concat(_runtimeDeterminedDetailsType.DiagnosticName, "_", _rawCanonType.DiagnosticNamespace); ;
Microsoft.AspNetCore.Authentication.Cookies (2)
src\aspnetcore\src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (2)
209keyValuePairs[chunkId] = KeyValuePair.Create(string.Concat(key, ChunkKeySuffix, chunkId.ToString(CultureInfo.InvariantCulture)), segment); 301keyValuePairs[i] = KeyValuePair.Create(string.Concat(key, "C", i.ToString(CultureInfo.InvariantCulture)), string.Empty);
Microsoft.AspNetCore.Components (1)
src\aspnetcore\src\Http\Routing\src\Patterns\RoutePatternParser.cs (1)
562return string.Concat(_template.Substring(0, _index), "|", _template.Substring(_index));
Microsoft.AspNetCore.Components.Endpoints (2)
src\aspnetcore\src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (2)
209keyValuePairs[chunkId] = KeyValuePair.Create(string.Concat(key, ChunkKeySuffix, chunkId.ToString(CultureInfo.InvariantCulture)), segment); 301keyValuePairs[i] = KeyValuePair.Create(string.Concat(key, "C", i.ToString(CultureInfo.InvariantCulture)), string.Empty);
Microsoft.AspNetCore.Mvc.Core (2)
src\aspnetcore\src\Shared\ChunkingCookieManager\ChunkingCookieManager.cs (2)
209keyValuePairs[chunkId] = KeyValuePair.Create(string.Concat(key, ChunkKeySuffix, chunkId.ToString(CultureInfo.InvariantCulture)), segment); 301keyValuePairs[i] = KeyValuePair.Create(string.Concat(key, "C", i.ToString(CultureInfo.InvariantCulture)), string.Empty);
Microsoft.AspNetCore.Routing (1)
Patterns\RoutePatternParser.cs (1)
562return string.Concat(_template.Substring(0, _index), "|", _template.Substring(_index));
Microsoft.Build (1)
Utilities\FileSpecMatchTester.cs (1)
137var recombinedFileSpec = string.Concat(normalizedFixedDirPart, wildcardDirectoryPart, filenamePart);
Microsoft.CodeAnalysis (1)
MetadataReader\MetadataHelpers.cs (1)
742return String.Concat(qualifier, DotDelimiterString, name);
Microsoft.CodeAnalysis.Features (1)
SignatureHelp\SignatureHelpParameter.cs (1)
168return string.Concat(prefix, display, suffix);
Microsoft.DotNet.Cli.Definitions (2)
Utilities\MSBuildPropertyParser.cs (2)
161? string.Concat("\"", input, "\"") 162: string.Concat("\"", input, "\\\"");
Microsoft.NET.Sdk.Publish.Tasks (7)
MsDeploy\CommonUtility.cs (2)
611arguments.Add(string.Concat(enumName.ToLower(), "=", valueData)); 653return string.Concat(quote, value, quote);
Tasks\MsDeploy\MSDeploy.cs (5)
500return string.Concat("\"", GenerateFullPathToTool(), "\" "); 803arguments.Add(string.Concat(ExistingSyncParameterMetadata.Value.ToString().ToLower(), 834string setData = (string.IsNullOrEmpty(path)) ? provider : string.Concat(provider, "=", valueData); 855setData = string.Concat(name, "=", valueData); 1006commandLine.AppendSwitchUnquotedIfNotNull("-userAgent=", string.Concat("\"", UserAgent, "\""));
Microsoft.Web.XmlTransform (4)
NamedTypeFactory.cs (1)
72Type regType = registration.Assembly.GetType(String.Concat(registration.NameSpace, ".", typeName));
XmlLocators.cs (1)
44keyPredicate = String.Concat(keyPredicate, " and ", keySegment);
XmlTransforms.cs (2)
482path = string.Concat(pathToNode, "/@", xmlAttribute.Name); 494return string.Concat(parentPath, "/", xmlNode.Name);
MSBuild (1)
CommandLine\CommandLineSwitches.cs (1)
533_parameterizedSwitches[(int)parameterizedSwitch].commandLineArg = string.Concat(
PresentationCore (1)
MS\Internal\FontCache\FontCacheUtil.cs (1)
682fontFamilyReference = string.Concat(
PresentationFramework-SystemXml (1)
SystemXmlExtension.cs (1)
80return string.Concat(prefix, ":", node.LocalName);
ReachFramework (1)
Serialization\VisualTreeFlattener.cs (1)
143string uri = string.Concat(m_mainFile.Substring(0, index), "_", bitmapName);
System.Data.Common (16)
System\Data\Common\SQLTypes\SQLBinaryStorage.cs (1)
102string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQlBooleanStorage.cs (1)
136string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLBytesStorage.cs (1)
100string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLByteStorage.cs (1)
212string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLCharsStorage.cs (1)
103string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLDateTimeStorage.cs (1)
138string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLDecimalStorage.cs (1)
210string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLDoubleStorage.cs (1)
211string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLGuidStorage.cs (1)
103string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLInt16Storage.cs (1)
211string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLInt32Storage.cs (1)
211string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLInt64Storage.cs (1)
212string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLMoneyStorage.cs (1)
211string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLSingleStorage.cs (1)
209string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SQLTypes\SQLStringStorage.cs (1)
164string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System\Data\Common\SqlUDTStorage.cs (1)
154string tempStr = string.Concat("<col>", s, "</col>"); // this is done since you can give fragment to reader
System.IO.Packaging (1)
System\IO\Packaging\PackUriHelper.PackUriScheme.cs (1)
102absolutePackageUri = string.Concat(PackUriHelper.UriSchemePack, Uri.SchemeDelimiter, absolutePackageUri);
System.Management (1)
System\Management\ManagementPath.cs (1)
576newPath = string.Concat(nsPath, ":", relPath);
System.Private.CoreLib (5)
src\runtime\src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (5)
86Concat(arg0?.ToString(), arg1?.ToString(), arg2?.ToString()); 273return Concat(str1, str2, str3); 278return Concat(str0, str2, str3); 283return Concat(str0, str1, str3); 288return Concat(str0, str1, str2);
System.Private.DataContractSerialization (5)
System\Runtime\Serialization\Json\JsonClassDataContract.cs (1)
126_typeName = string.IsNullOrEmpty(traditionalDataContract.Namespace.Value) ? traditionalDataContract.Name.Value : string.Concat(traditionalDataContract.Name.Value, JsonGlobals.NameValueSeparatorString, XmlObjectSerializerWriteContextComplexJson.TruncateDefaultDataContractNamespace(traditionalDataContract.Namespace.Value));
System\Runtime\Serialization\Json\JsonDataContract.cs (1)
166_typeName = string.IsNullOrEmpty(traditionalDataContract.Namespace.Value) ? traditionalDataContract.Name.Value : string.Concat(traditionalDataContract.Name.Value, JsonGlobals.NameValueSeparatorString, XmlObjectSerializerWriteContextComplexJson.TruncateDefaultDataContractNamespace(traditionalDataContract.Namespace.Value));
System\Runtime\Serialization\Json\XmlObjectSerializerWriteContextComplexJson.cs (1)
70WriteTypeInfo(writer, string.Concat(dataContractName, JsonGlobals.NameValueSeparatorString, TruncateDefaultDataContractNamespace(dataContractNamespace)));
System\Xml\XmlBaseWriter.cs (1)
853WriteAttributeText(string.Concat(prefix, ":", namespaceUri.Value));
System\Xml\XmlExceptionHelper.cs (1)
58return string.Concat(prefix, ":", localName);
System.Private.Xml (1)
System\Xml\Xsl\Runtime\StringConcat.cs (1)
753 => string.Concat(_s1, _s2, _s3),
System.Private.Xml.Linq (2)
System\Xml\Linq\XNodeReader.cs (1)
236return _nameTable.Add(string.Concat(prefix, ":", GetLocalName()));
System\Xml\XPath\XNodeNavigator.cs (1)
165return _nameTable.Add(string.Concat(prefix, ":", GetLocalName()));
System.ServiceModel.NetFramingBase (1)
System\ServiceModel\Channels\TransportSecurityHelpers.cs (1)
125uriBuilder.Host = string.Concat("[", ipv6Host, "]");
System.ServiceModel.Primitives (1)
System\FxTrace.cs (1)
39s_eventSourceName = string.Concat(baseEventSourceName, " ", EventSourceVersion);
System.ServiceModel.Syndication (2)
System\ServiceModel\Channels\UriGenerator.cs (1)
16_prefix = string.Concat("uuid:", Guid.NewGuid().ToString(), ";id=");
System\ServiceModel\Syndication\SyndicationFeedFormatter.cs (1)
493return string.Concat(prefix, ":", localName);
System.Windows.Forms (1)
System\Windows\Forms\Components\ErrorProvider\ErrorProvider.cs (1)
492outputError = string.Concat(outputError, "\r\n", error);
vstest.console (1)
Publisher\TextFileTelemetryPublisher.cs (1)
71var finalData = string.Concat(eventName, ";", telemetryData);
vstest.console.arm64 (1)
src\vstest\src\vstest.console\Publisher\TextFileTelemetryPublisher.cs (1)
71var finalData = string.Concat(eventName, ";", telemetryData);