82 references to Concat
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-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));
Microsoft.AspNetCore.Authentication.Cookies (2)
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\Http\Routing\src\Patterns\RoutePatternParser.cs (1)
562return string.Concat(_template.Substring(0, _index), "|", _template.Substring(_index));
Microsoft.AspNetCore.CookiePolicy.Test (2)
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.Grpc.JsonTranscoding.Tests (1)
artifacts\obj\Microsoft.AspNetCore.Grpc.JsonTranscoding.Tests\Release\net10.0\Proto\Issue047349\Message.cs (1)
24string.Concat(
Microsoft.AspNetCore.Mvc.Core (2)
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)
136var recombinedFileSpec = string.Concat(normalizedFixedDirPart, wildcardDirectoryPart, filenamePart);
Microsoft.Build.Engine.UnitTests (1)
BackEnd\TaskExecutionHost_Tests.cs (1)
885ValidateOutputProperty("ItemArrayOutput", String.Concat(_twoItems[0].ItemSpec, ";", _twoItems[1].ItemSpec));
Microsoft.CodeAnalysis (1)
MetadataReader\MetadataHelpers.cs (1)
721return String.Concat(qualifier, DotDelimiterString, name);
Microsoft.CodeAnalysis.CSharp.EditorFeatures (1)
AutomaticCompletion\AutomaticLineEnderCommandHandler.cs (1)
635=> string.Concat(SyntaxFacts.GetText(SyntaxKind.OpenBraceToken),
Microsoft.CodeAnalysis.CSharp.EditorFeatures.UnitTests (3)
CodeActions\InlineMethod\CSharpInlineMethodTests.cs (2)
108string.Concat(firstPartitionBeforeMarkUp, inlinedMethod, lastPartitionAfterMarkup), 140string.Concat(
SymbolKey\SymbolKeyTestBase.cs (1)
104var message = string.Concat(
Microsoft.CodeAnalysis.EditorFeatures2.UnitTests (1)
Workspaces\SymbolDescriptionServiceTests.vb (1)
61Dim workspace = String.Concat(part1, code, part2)
Microsoft.CodeAnalysis.ExternalAccess.FSharp (1)
SignatureHelp\FSharpSignatureHelpParameter.cs (1)
88return string.Concat(prefix, display, suffix);
Microsoft.CodeAnalysis.Features (1)
SignatureHelp\SignatureHelpParameter.cs (1)
168return string.Concat(prefix, display, suffix);
Microsoft.DotNet.Build.Tasks.Installers (1)
src\BuildFPMToolPreReqs.cs (1)
184dependency = string.Concat(rpmdep.Package_Name, " >= ", rpmdep.Package_Version);
MSBuild (1)
CommandLineSwitches.cs (1)
522_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.Private.CoreLib (5)
src\libraries\System.Private.CoreLib\src\System\String.Manipulation.cs (5)
75Concat(arg0?.ToString(), arg1?.ToString(), arg2?.ToString()); 252return Concat(str1, str2, str3); 257return Concat(str0, str2, str3); 262return Concat(str0, str1, str3); 267return 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.Syndication (2)
System\ServiceModel\Channels\UriGenerator.cs (1)
16_prefix = string.Concat("uuid:", Guid.NewGuid().ToString(), ";id=");
System\ServiceModel\Syndication\SyndicationFeedFormatter.cs (1)
489return string.Concat(prefix, ":", localName);
System.Windows.Forms (1)
System\Windows\Forms\ErrorProvider\ErrorProvider.cs (1)
500outputError = string.Concat(outputError, "\r\n", error);