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