78 references to Parse
mscorlib (4)
system\convert.cs (2)
444return Boolean.Parse(value); 450return Boolean.Parse(value);
system\runtime\serialization\formatters\binary\binaryutilclasses.cs (1)
901booleanA[index] = Boolean.Parse(value);
system\security\permissions\isolatedstoragepermission.cs (1)
271m_permanentData = param != null ? (Boolean.Parse(param)) : false ;
PresentationBuildTasks (2)
Framework\System\Windows\Markup\BamlRecordWriter.cs (1)
627defKeyRecord.Shared = Boolean.Parse(xamlDefNode.Value);
Framework\System\Windows\Markup\XamlParser.cs (1)
955Boolean.Parse(attributeValue); // For validation only.
PresentationFramework (2)
src\Framework\System\Windows\Markup\BamlRecordReader.cs (1)
3659bool freeze = Boolean.Parse(bamlPresentationOptionsAttributeRecord.Value);
src\Framework\System\Windows\Markup\BamlRecordWriter.cs (1)
627defKeyRecord.Shared = Boolean.Parse(xamlDefNode.Value);
System (2)
compmod\system\componentmodel\BooleanConverter.cs (1)
49return Boolean.Parse(text);
compmod\system\componentmodel\TypeConverter.cs (1)
43useCompatibleTypeConversion = bool.Parse(useCompatibleConfig.Trim());
System.Activities.Presentation (1)
System.Activities.Presentation\System\Activities\Presentation\TypeNameConverter.cs (1)
27bool fullName = bool.Parse(parameter.ToString());
System.Configuration (3)
System\Configuration\ConfigurationElement.cs (1)
1483ItemLockedLocally = bool.Parse(reader.Value);
System\Configuration\MgmtConfigurationRecord.cs (2)
2840overrideMode = OverrideModeSetting.CreateFromXmlReadValue(Boolean.Parse(allowOverrideAttribute)); 2852inheritInChildApps = Boolean.Parse(inheritInChildAppsAttribute);
System.Data (9)
cdf\src\NetFx40\Tools\System.Activities.Presentation\System\Activities\Presentation\TypeNameConverter.cs (1)
27bool fullName = bool.Parse(parameter.ToString());
fx\src\data\System\Data\Common\DbConnectionStringCommon.cs (2)
260return Boolean.Parse(svalue); 290return Boolean.Parse(svalue);
fx\src\data\System\Data\Common\DBDataPermission.cs (2)
285_isUnrestricted = (null != unrestrictedValue) && Boolean.Parse(unrestrictedValue); 290_allowBlankPassword = (null != allowNull) && Boolean.Parse(allowNull);
fx\src\data\System\Data\Filter\DataExpression.cs (1)
226return Boolean.Parse((string)value);
fx\src\data\System\Data\Filter\FunctionNode.cs (1)
280return Boolean.Parse((string)argumentValues[0]);
fx\src\data\System\Data\SQLTypes\SQLBoolean.cs (2)
252return new SqlBoolean(Boolean.Parse(s)); 262return new SqlBoolean(Boolean.Parse(s));
System.Data.Linq (12)
Mapping\MappingSource.cs (2)
230return (value != null) ? bool.Parse(value) : @default; 235return (value != null) ? (bool?)bool.Parse(value) : null;
parent\DbmlShared\Mapping.cs (10)
177set { this.isComposable = (value != null) ? bool.Parse(value) : false; } 285set { this.isInheritanceDefault = (value != null) ? bool.Parse(value) : false; } 346set { this.canBeNull = (value != null) ? bool.Parse(value) : true; } 361set { this.isPrimaryKey = (value != null) ? bool.Parse(value) : false; } 371set { this.isDBGenerated = (value != null) ? bool.Parse(value) : false; } 381set { this.isVersion = (value != null) ? bool.Parse(value) : false; } 391set { this.isDiscriminator = (value != null) ? bool.Parse(value) : false; } 453set { this.isForeignKey = (value != null) ? bool.Parse(value) : false; } 458set { this.deleteOnNull = (value != null) ? bool.Parse(value) : false; } 468set { this.isUnique = (value != null) ? bool.Parse(value) : false; }
System.Data.SqlXml (1)
System\Xml\Xsl\QIL\QilXmlReader.cs (1)
425bool strict = bool.Parse(m.Groups[3].Value);
System.ServiceModel.Activation (1)
System\ServiceModel\Activation\ServiceParser.cs (1)
815val = bool.Parse(s);
System.Web (5)
Configuration\HttpCapabilitiesBase.cs (2)
498return bool.Parse(value); 507return bool.Parse(this[capsKey]);
UI\Util.cs (1)
871return bool.Parse(value);
UI\WebControls\AutoGeneratedField.cs (1)
229((CheckBox)boundControl).Checked = Boolean.Parse(data.ToString());
UI\WebControls\CheckBoxField.cs (1)
325((CheckBox)boundControl).Checked = Boolean.Parse(data.ToString());
System.Web.DataVisualization (10)
Common\Converters\CustomAttributesConverters.cs (1)
664 result = bool.Parse(stringValue);
Common\Formulas\Oscillator.cs (1)
103 bool startFromFirst = bool.Parse( extraParameterList[0] );
Common\Formulas\PriceIndicators.cs (5)
155 bool startFromFirst = bool.Parse( extraParameterList[0]); 333 bool startFromFirst = bool.Parse( extraParameterList[0] ); 474 bool startFromFirst = bool.Parse( extraParameterList[0] ); 557 bool startFromFirst = bool.Parse( extraParameterList[0] ); 707 bool startFromFirst = bool.Parse( extraParameterList[0] );
Common\Formulas\StatisticalAnalysis.cs (1)
1651 sampleVariance = bool.Parse( parameterList[0] );
Common\Formulas\TechGeneralIndicators.cs (1)
95 bool startFromFirst = bool.Parse( extraParameterList[0] );
Common\General\FormulaData.cs (1)
1284return bool.Parse(_extraParameters[0]);
System.Windows.Forms.DataVisualization (10)
Common\Converters\CustomAttributesConverters.cs (1)
664 result = bool.Parse(stringValue);
Common\Formulas\Oscillator.cs (1)
103 bool startFromFirst = bool.Parse( extraParameterList[0] );
Common\Formulas\PriceIndicators.cs (5)
155 bool startFromFirst = bool.Parse( extraParameterList[0]); 333 bool startFromFirst = bool.Parse( extraParameterList[0] ); 474 bool startFromFirst = bool.Parse( extraParameterList[0] ); 557 bool startFromFirst = bool.Parse( extraParameterList[0] ); 707 bool startFromFirst = bool.Parse( extraParameterList[0] );
Common\Formulas\StatisticalAnalysis.cs (1)
1651 sampleVariance = bool.Parse( parameterList[0] );
Common\Formulas\TechGeneralIndicators.cs (1)
95 bool startFromFirst = bool.Parse( extraParameterList[0] );
Common\General\FormulaData.cs (1)
1284return bool.Parse(_extraParameters[0]);
System.Workflow.ComponentModel (1)
AuthoringOM\Compiler\Configuration.cs (1)
123this.isAuthorized = bool.Parse(value);
System.Workflow.Runtime (12)
Hosting\DefaultWorkflowTransactionService.cs (2)
38_enableRetries = bool.Parse(parameters[key]); 72_enableRetries = bool.Parse(commonConfigurationParameters[key].Value);
Hosting\SharedConnectionWorkflowTransactionService.cs (2)
66_enableRetries = bool.Parse(parameters[key]); 127_enableRetries = bool.Parse(commonConfigurationParameters[key].Value);
Hosting\SqlWorkflowPersistenceService.cs (3)
770_unloadOnIdle = bool.Parse(parameters[key]); 786_enableRetries = bool.Parse(parameters[key]); 841_enableRetries = bool.Parse(commonConfigurationParameters[key].Value);
Tracking\SqlTrackingService.cs (5)
157_isTrans = bool.Parse(parameters[key]); 159_defaultProfile = bool.Parse(parameters[key]); 161_partition = bool.Parse(parameters[key]); 172_enableRetries = bool.Parse(parameters[key]); 208_enableRetries = bool.Parse(commonConfigurationParameters[key].Value);
System.WorkflowServices (1)
System\ServiceModel\Persistence\SqlPersistenceProviderFactory.cs (1)
92this.SerializeAsText = bool.Parse(parameters[key]);
WindowsBase (2)
Base\System\Security\Permissions\MediaPermission.cs (1)
406if (unrestricted != null && Boolean.Parse(unrestricted))
Base\System\Security\Permissions\WebBrowserPermission.cs (1)
268if (unrestricted != null && Boolean.Parse(unrestricted))