12 references to SqlUserDefinedTypeAttribute
System.Data (12)
fx\src\data\System\Data\Sql\sqlser.cs (6)
107return t.GetCustomAttributes(typeof(SqlUserDefinedTypeAttribute), false); 110internal static SqlUserDefinedTypeAttribute GetUdtAttribute(Type t) { 111SqlUserDefinedTypeAttribute udtAttr = null; 115udtAttr = (SqlUserDefinedTypeAttribute) attr[0]; 125SqlUserDefinedTypeAttribute udtAttr = GetUdtAttribute(t); 157SqlUserDefinedTypeAttribute udtAttr = SerializationHelperSql9.GetUdtAttribute(t);
fx\src\data\System\Data\SqlClient\SqlEnums.cs (3)
484Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute[] attributes = (Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute[])type.GetCustomAttributes(typeof(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute), true);
fx\src\data\System\Data\SqlClient\SqlUdtInfo.cs (3)
38private SqlUdtInfo(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute attr) { 67object[] attr = target.GetCustomAttributes(typeof(Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute), false); 69udtAttr = new SqlUdtInfo((Microsoft.SqlServer.Server.SqlUserDefinedTypeAttribute)attr[0]);