33 references to Trim
mscorlib (3)
system\globalization\datetimeformatinfo.cs (2)
2525if (this.DateSeparator.Trim(null).Equals(symbol)) 2897str = str.Trim(null); // Trim white space characters.
system\security\util\stringexpressionset.cs (1)
110return str.Trim( m_trimChars );
System (4)
net\System\Net\_DigestClient.cs (1)
1090return quotedString.Trim().Trim("\"".ToCharArray());
net\System\Net\NetWebProxyFinder.cs (1)
426string proxyString = s.Trim(' ');
net\System\Net\WebHeaderCollection.cs (1)
477name = name.Trim(HttpTrimCharacters);
net\System\UriExt.cs (1)
764relativeStr = relativeStr.Trim(_WSchars);
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
1351hint = this.HintText.Trim(new char[] { '<', '>' });
System.Data (3)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\View\VisualBasicEditor.xaml.cs (1)
1351hint = this.HintText.Trim(new char[] { '<', '>' });
fx\src\data\System\Data\Sql\SqlDataSourceEnumerator.cs (1)
111string value = instance.Trim('\0'); // MDAC 91934
fx\src\data\System\Data\SQLTypes\SQLFileStream.cs (1)
839return String.Format ( CultureInfo.InvariantCulture, formatPath, path.Trim('\\'), uniqueId);
System.Data.Services (1)
System\Data\Services\Parsing\WebConvert.cs (1)
767text = text.Trim(XmlWhitespaceChars);
System.Data.Services.Client (1)
System\Data\Services\Client\DataServiceContext.cs (1)
3554entitySetName = entitySetName.Trim(Util.ForwardSlash);
System.Data.SqlXml (1)
System\Xml\Xsl\XPath\XPathCompileException.cs (1)
79if (queryString == null || queryString.Trim(' ').Length == 0) {
System.Drawing (1)
commonui\System\Drawing\FontConverter.cs (1)
475size = size.Trim(trimChars);
System.ServiceModel (4)
System\ServiceModel\Channels\HttpHeadersWebHeaderCollection.cs (1)
308name = name.Trim(HttpTrimCharacters);
System\ServiceModel\Channels\PnrpPeerResolver.cs (1)
570string[] parts = uri.AbsolutePath.Trim(new char[] { ' ', PathSeparator }).Split(PathSeparator);
System\ServiceModel\ComIntegration\SafeNativeMethods.cs (1)
868retVal = stringVal.Trim(new char[] { '\0' });
System\ServiceModel\Dispatcher\QueryFunctions.cs (1)
1253string str = context.PeekString(argStr.basePtr).Trim(whitespace);
System.Web (2)
UI\CssTextWriter.cs (1)
453urlValue = urlValue.Trim(quote);
WebSockets\SubprotocolUtil.cs (1)
103string subprotocolCandidateTrimmed = subprotocolCandidate.Trim(_lwsTrimChars); // remove LWS according to '#' rule
System.Web.DataVisualization (3)
Common\DataManager\DataPoint.cs (1)
378 otherValueFormat[index] = otherValueFormat[index].Trim('{', '}');
Common\DataManager\DataSeries.cs (2)
1237 format = result.Substring(keyEndIndex, formatEnd - keyEndIndex).Trim('{', '}'); 1344 format = result.Substring(keyEndIndex, formatEnd - keyEndIndex).Trim('{', '}');
System.Web.Services (1)
System\Web\Services\Protocols\Scalars.cs (1)
238return paramDecl.Substring(equals + 1).Trim(new char[] { ' ', '\'', '\"', '\t' });
System.Windows.Forms.DataVisualization (3)
Common\DataManager\DataPoint.cs (1)
378 otherValueFormat[index] = otherValueFormat[index].Trim('{', '}');
Common\DataManager\DataSeries.cs (2)
1237 format = result.Substring(keyEndIndex, formatEnd - keyEndIndex).Trim('{', '}'); 1344 format = result.Substring(keyEndIndex, formatEnd - keyEndIndex).Trim('{', '}');
System.Workflow.ComponentModel (2)
AuthoringOM\Compiler\XomlCompilerHelpers.cs (2)
503string realFileName = fileName.Trim(new char[] { '"' }); 534string fullPathName = pathName.Trim(new char[] { '"' });
System.Xml (2)
System\Xml\Serialization\XmlSchemaImporter.cs (1)
1424xmlnsMemberName = (((XmlText)e.LastNode).Value).Trim(null);
System\Xml\XmlConvert.cs (1)
1418return value.Trim(WhitespaceChars);
System.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
8398switch (a.Value.Trim(new char[] {' ', '\t', '\n', '\r'})) {