Base:
8 references to ToString
PresentationFramework (8)
System\Windows\Documents\FixedSOMImage.cs (2)
60imageUri = new Uri(imageSource.ToString(), UriKind.RelativeOrAbsolute); 81imageUri = new Uri(imageSource.ToString(), UriKind.RelativeOrAbsolute);
System\Windows\Documents\TextRangeSerialization.cs (1)
1161if (image.Source != null && !string.IsNullOrEmpty(image.Source.ToString()))
System\Windows\Documents\WpfPayload.cs (5)
443string imageContentType = GetImageContentType(image.Source.ToString()); 492if (string.IsNullOrEmpty(image.Source.ToString())) 506string imageContentType = GetImageContentType(image.Source.ToString()); 514Invariant.Assert(imageContentType == GetImageContentType(_images[i].Source.ToString()), $"Image content types expected to be consistent: {imageContentType} vs. {GetImageContentType(_images[i].Source.ToString())}");