1 write to flagState
System (1)
compmod\system\componentmodel\MaskedTextProvider.cs (1)
255this.flagState = new BitVector32();
19 references to flagState
System (19)
compmod\system\componentmodel\MaskedTextProvider.cs (19)
292this.flagState[ALLOW_PROMPT_AS_INPUT] = allowPromptAsInput; 293this.flagState[ASCII_ONLY ] = restrictToAscii; 297this.flagState[INCLUDE_PROMPT ] = false; 298this.flagState[INCLUDE_LITERALS ] = true; 299this.flagState[RESET_ON_PROMPT ] = true; 300this.flagState[SKIP_SPACE ] = true; 301this.flagState[RESET_ON_LITERALS] = true; 465return this.flagState[ALLOW_PROMPT_AS_INPUT]; 617return this.flagState[INCLUDE_LITERALS]; 621this.flagState[INCLUDE_LITERALS] = value; 633return this.flagState[INCLUDE_PROMPT]; 637this.flagState[INCLUDE_PROMPT] = value; 648return this.flagState[ASCII_ONLY]; 826return this.flagState[RESET_ON_PROMPT]; 830this.flagState[RESET_ON_PROMPT] = value; 845return this.flagState[SKIP_SPACE]; 849this.flagState[SKIP_SPACE] = value; 865return this.flagState[RESET_ON_LITERALS]; 869this.flagState[RESET_ON_LITERALS] = value;