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