You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// <param name="cultureInfo">current culture (see CLR specs), null is a valid value</param>
65
75
/// <param name="value">value to convert from</param>
66
76
/// <param name="destinationType">Type to convert to</param>
67
-
/// <returns>converted value</returns>
68
-
/// <ExternalAPI/>
77
+
/// <returns>
78
+
/// The formatted <paramref name="value"/> as <see cref="string"/> using the specified <paramref name="cultureInfo"/> or an <see cref="InstanceDescriptor"/>.
Copy file name to clipboardExpand all lines: src/Microsoft.DotNet.Wpf/src/PresentationFramework/System/Windows/Controls/VirtualizationCacheLengthConverter.cs
+5-6Lines changed: 5 additions & 6 deletions
Original file line number
Diff line number
Diff line change
@@ -11,9 +11,8 @@
11
11
namespaceSystem.Windows.Controls
12
12
{
13
13
/// <summary>
14
-
/// VirtualizationCacheLengthConverter - Converter class for converting
15
-
/// instances of other types to and from VirtualizationCacheLength instances.
16
-
/// </summary>
14
+
/// Converter class for converting instances of other types to and from <see cref="VirtualizationCacheLength"/> instances.
// We can only handle strings, integral and floating types
@@ -95,22 +95,22 @@ public override object ConvertFrom(ITypeDescriptorContext typeDescriptorContext,
95
95
}
96
96
97
97
/// <summary>
98
-
/// ConvertTo - Attempt to convert a Thicknessto the given type
98
+
/// Attempt to convert a <see cref="Thickness"/> struct to the <paramref name="destinationType"/>.
99
99
/// </summary>
100
100
/// <returns>
101
-
/// The object which was constructed.
101
+
/// The formatted <paramref name="value"/> as <see cref="string"/> using the specified <paramref name="cultureInfo"/> or an <see cref="InstanceDescriptor"/>.
102
102
/// </returns>
103
+
/// <param name="typeDescriptorContext"> The ITypeDescriptorContext for this call. </param>
104
+
/// <param name="cultureInfo"> The CultureInfo which is respected when converting. </param>
105
+
/// <param name="value"> The Thickness to convert. </param>
106
+
/// <param name="destinationType">The type to which to convert the Thickness instance. </param>
103
107
/// <exception cref="ArgumentNullException">
104
108
/// An ArgumentNullException is thrown if the example object is null.
105
109
/// </exception>
106
110
/// <exception cref="ArgumentException">
107
111
/// An ArgumentException is thrown if the object is not null and is not a Thickness,
108
112
/// or if the destinationType isn't one of the valid destination types.
109
113
/// </exception>
110
-
/// <param name="typeDescriptorContext"> The ITypeDescriptorContext for this call. </param>
111
-
/// <param name="cultureInfo"> The CultureInfo which is respected when converting. </param>
112
-
/// <param name="value"> The Thickness to convert. </param>
113
-
/// <param name="destinationType">The type to which to convert the Thickness instance. </param>
0 commit comments