14 writes to flags
System.ServiceModel (14)
System\ServiceModel\Dispatcher\MatchSingleFxEngineOpcode.cs (1)
24this.flags |= OpcodeFlags.Fx;
System\ServiceModel\Dispatcher\QueryBranchOp.cs (3)
17this.flags |= OpcodeFlags.Jump; 660this.flags |= OpcodeFlags.Branch; 1240this.flags |= OpcodeFlags.Branch;
System\ServiceModel\Dispatcher\QueryCoreOp.cs (3)
139this.flags |= OpcodeFlags.Literal; 178this.flags |= OpcodeFlags.Literal; 217this.flags |= OpcodeFlags.Literal;
System\ServiceModel\Dispatcher\QueryOpcode.cs (2)
115this.flags = OpcodeFlags.Single; 129this.flags = value;
System\ServiceModel\Dispatcher\QueryRelOp.cs (1)
79this.flags |= OpcodeFlags.Literal;
System\ServiceModel\Dispatcher\QueryResultOp.cs (2)
15this.flags |= OpcodeFlags.Result; 113this.flags |= OpcodeFlags.Multiple;
System\ServiceModel\Dispatcher\QuerySelectOp.cs (2)
466this.flags |= (flags | OpcodeFlags.Select); 469this.flags |= OpcodeFlags.CompressableSelect;
4 references to flags
System.ServiceModel (4)
System\ServiceModel\Dispatcher\QueryOpcode.cs (3)
125return this.flags; 230return ((this.flags & (OpcodeFlags.Result | OpcodeFlags.Multiple)) == 370return (0 != (this.flags & flag));
System\ServiceModel\Dispatcher\QuerySelectOp.cs (1)
467if (criteria.IsCompressable && (0 == (this.flags & OpcodeFlags.InitialSelect)))