23 references to Name
System.Activities (2)
Microsoft\VisualBasic\Activities\VisualBasicHelper.cs (2)
852variableExpression.Name, 1295if (parameterExpression.Type == typeof(ActivityContext) && parameterExpression.Name == "context")
System.Core (12)
Microsoft\Scripting\Ast\DebugViewWriter.cs (3)
123Debug.Assert(String.IsNullOrEmpty(p.Name)); 418if (String.IsNullOrEmpty(node.Name)) { 425Out(GetDisplayName(node.Name));
Microsoft\Scripting\Ast\Expression.DebuggerProxy.cs (1)
356public String Name { get { return _node.Name; } }
Microsoft\Scripting\Ast\ExpressionStringBuilder.cs (2)
332string name = node.Name; 750Out(node.Variable.Name ?? "");
Microsoft\Scripting\Compiler\CompilerScope.cs (1)
275throw Error.UndefinedVariable(variable.Name, variable.Type, CurrentLambdaName);
Microsoft\Scripting\Compiler\LambdaCompiler.cs (3)
131var paramNames = lambda.Parameters.Map(p => p.Name); 268if (EmitDebugSymbols && variable.Name != null) { 269_tree.DebugInfoGenerator.SetLocalName(lb, variable.Name);
Microsoft\Scripting\Compiler\VariableBinder.cs (2)
236throw Error.UndefinedVariable(node.Name, node.Type, CurrentLambdaName); 240throw Error.CannotCloseOverByRef(node.Name, CurrentLambdaName);
System.Data.Entity (4)
System\Data\Objects\ELinq\Funcletizer.cs (2)
429return EntityUtil.NotSupported(Strings.CompiledELinq_UnsupportedNamedParameterType(parameterExp.Name, parameterExp.Type.FullName)); 434return EntityUtil.NotSupported(Strings.CompiledELinq_UnsupportedNamedParameterUseAsType(parameterExp.Name, expression.Type.FullName));
System\Data\Objects\ELinq\Translator.cs (2)
69parent._funcletizer.RootContextParameter.Name)); 701throw EntityUtil.InvalidOperation(System.Data.Entity.Strings.ELinq_UnboundParameterExpression(linq.Name));
System.Data.Linq (1)
SqlClient\Query\QueryConverter.cs (1)
1154throw Error.ParameterNotInScope(p.Name);
System.Data.Services (1)
System\Data\Services\RequestUriProcessor.cs (1)
1048ParameterExpression p = Expression.Parameter(targetType, input.Parameters[0].Name);
System.Web.Extensions (3)
UI\WebControls\Dynamic.cs (3)
657if (!String.IsNullOrEmpty(pe.Name)) 658AddSymbol(pe.Name, pe); 659if (parameters.Length == 1 && String.IsNullOrEmpty(parameters[0].Name))