2 writes to _udtAssemblyQualifiedName
System.Data (2)
fx\src\data\Microsoft\SqlServer\Server\SmiMetaData.cs (2)
402
_udtAssemblyQualifiedName
= udtAssemblyQualifiedName;
589
_udtAssemblyQualifiedName
= _clrType.AssemblyQualifiedName;
6 references to _udtAssemblyQualifiedName
System.Data (6)
fx\src\data\Microsoft\SqlServer\Server\SmiMetaData.cs (6)
550
if (null == _clrType && SqlDbType.Udt == _databaseType &&
_udtAssemblyQualifiedName
!= null) {
551
_clrType = Type.GetType(
_udtAssemblyQualifiedName
, true);
561
if (null == _clrType && SqlDbType.Udt == _databaseType &&
_udtAssemblyQualifiedName
!= null) {
562
_clrType = Type.GetType(
_udtAssemblyQualifiedName
, false);
588
if (
_udtAssemblyQualifiedName
== null && _clrType != null) {
591
result =
_udtAssemblyQualifiedName
;