11 references to ParameterNameFixed
System.Data (11)
fx\src\data\System\Data\SqlClient\SqlCommand.cs (9)
3989
if (sqlParameter.
ParameterNameFixed
.Equals(parameterName, StringComparison.Ordinal)) {
5168
throw SQL.InvalidDataTypeForEncryptedParameter(thisParam.
ParameterNameFixed
, rec.tdsType, TdsEnums.SQLBIGVARBINARY);
5193
throw SQL.ParamDecryptionFailed(thisParam.
ParameterNameFixed
, null, e);
5351
if (thisParam.Direction != ParameterDirection.Input && thisParam.Direction != ParameterDirection.ReturnValue && paramName == thisParam.
ParameterNameFixed
) {
5683
execStatement.AppendFormat(@"{0}=", returnValueParameter.
ParameterNameFixed
);
5705
execStatement.AppendFormat(@" {0}={0}", parameters[i].
ParameterNameFixed
);
5721
execStatement.AppendFormat(@", {0}={0}", parameters[i].
ParameterNameFixed
);
5759
paramList.Append(sqlParam.
ParameterNameFixed
);
5779
throw SQL.MustSetTypeNameForParam(mt.TypeName, sqlParam.
ParameterNameFixed
);
fx\src\data\System\Data\SqlClient\SqlParameter.cs (1)
506
this.
ParameterNameFixed
,
fx\src\data\System\Data\SqlClient\TdsParser.cs (1)
8185
WriteParameterName(param.
ParameterNameFixed
, stateObj);