135 references to Success
PresentationFramework (1)
System (14)
System.Activities (5)
Microsoft\VisualBasic\Activities\XamlIntegration\VisualBasicExpressionConverter.cs (1)
135if (match.Success)
System.ComponentModel.DataAnnotations (1)
System.Configuration (1)
System.Core (3)
System\Management\Automation\UMPAttributes.cs (3)
125|| !Regex.Match(namespacePart, @"^[a-z,A-Z]").Success // All parts must start with letter
126|| Regex.Match(namespacePart, @"_$").Success // Must not end with an underscore
127|| Regex.Match(namespacePart, @"[^a-z,A-Z,0-9,_,\u0080-\uFFFF]").Success) // Only letters, digits, or underscores
System.Data.Entity (1)
System.Data.Entity.Design (1)
System.Data.Linq (1)
System.Data.Services (1)
System.Data.Services.Design (1)
System.Data.SqlXml (2)
System.Management (4)
Instrumentation\Attributes.cs (3)
66|| !Regex.Match(namespacePart, @"^[a-z,A-Z]").Success // All parts must start with letter
67|| Regex.Match(namespacePart, @"_$").Success // Must not end with an underscore
68|| Regex.Match(namespacePart, @"[^a-z,A-Z,0-9,_,\u0080-\uFFFF]").Success) // Only letters, digits, or underscores
System.ServiceModel (4)
System.ServiceModel.Activation (1)
System.Web (55)
UI\ControlBuilder.cs (11)
1352if ((match = bindExpressionRegex.Match(codeBlockBuilder.Content, 0)).Success || (match = bindItemExpressionRegex.Match(codeBlockBuilder.Content, 0)).Success) {
2659if ((match = databindRegex.Match(attribvalue, 0)).Success) {
2672bool encode = match.Groups["encode"].Success;
2678if ((match = bindExpressionRegex.Match(code, 0)).Success) {
2682else if ((match = bindItemExpressionRegex.Match(code, 0)).Success) {
2690(match = evalExpressionRegex.Match(code, 0)).Success) {
2700if (!(match = bindParametersRegex.Match(paramString, 0)).Success) {
2704else if (!(match = bindItemParametersRegex.Match(paramString, 0)).Success) {
2717if (!(match = formatStringRegex.Match(formatString, 0)).Success) {
2744else if ((match = expressionBuilderRegex.Match(attribvalue, 0)).Success) {
UI\TemplateParser.cs (18)
962if ((match = textRegex.Match(text, textPos)).Success)
990(match = directiveRegex.Match(text, textPos)).Success)
1026else if ((match = includeRegex.Match(text, textPos)).Success)
1042else if ((match = commentRegex.Match(text, textPos)).Success)
1054(match = aspExprRegex.Match(text, textPos)).Success)
1062else if (!flags[inScriptTag] && (match = aspEncodedExprRegex.Match(text, textPos)).Success) {
1071(match = databindExprRegex.Match(text, textPos)).Success) {
1081(match = aspCodeRegex.Match(text, textPos)).Success)
1101lastGTIndex > textPos && (match = tagRegex.Match(text, textPos)).Success)
1118else if ((match = endtagRegex.Match(text, textPos)).Success)
1126if (match == null || !match.Success || fMatchedButNotProcessed) {
1466bool fSelfClosed = match.Groups["empty"].Success;
1715return ControlBuilder.expressionBuilderRegex.Match(val, 0).Success;
2274if (!match.Success)
2284if (!match.Success)
2291if (matchLessThan.Success && matchLessThan.Index < match.Index)
2302if (TagRegex.Match(tag2).Success) {
2498bool encode = match.Groups["encode"].Success;
System.Web.DynamicData (1)
System.Web.Extensions (1)
System.Web.Mobile (13)
UI\MobileControls\Design\Util\SimpleParser.cs (11)
120if ((match = _textRegex.Match(text, textPos)).Success)
139if ((match = _unclosedTagRegex.Match(text, textPos)).Success)
146else if ((match = _tagRegex.Match(text, textPos)).Success)
152else if ((match = _endtagRegex.Match(text, textPos)).Success)
184else if ((match = _directiveRegex.Match(text, textPos)).Success)
191else if ((match = _includeRegex.Match(text, textPos)).Success)
198else if ((match = _commentRegex.Match(text, textPos)).Success)
204else if ((match = _aspExprRegex.Match(text, textPos)).Success)
212else if ((match = _databindExprRegex.Match(text, textPos)).Success)
218else if ((match = _aspCodeRegex.Match(text, textPos)).Success)
224if (match == null || !match.Success)
System.Web.Services (10)
System.Windows.Forms (1)
System.Workflow.ComponentModel (1)
System.Xml (12)