diff --git a/xml/System.ComponentModel/ComponentResourceManager.xml b/xml/System.ComponentModel/ComponentResourceManager.xml
index 02dfecc38a1..873fc47632e 100644
--- a/xml/System.ComponentModel/ComponentResourceManager.xml
+++ b/xml/System.ComponentModel/ComponentResourceManager.xml
@@ -349,9 +349,9 @@
- To be added.
- To be added.
- To be added.
+ An that contains the property value to be applied.
+ A that contains the name of the object to look up in the resources.
+ The culture for which to apply resources.
Examines all the resources for the provided culture.
When it finds a resource with a key in the format of
diff --git a/xml/System.ComponentModel/CustomTypeDescriptor.xml b/xml/System.ComponentModel/CustomTypeDescriptor.xml
index 63d9995fde2..0c22862f2c7 100644
--- a/xml/System.ComponentModel/CustomTypeDescriptor.xml
+++ b/xml/System.ComponentModel/CustomTypeDescriptor.xml
@@ -490,7 +490,7 @@
Returns a type converter for the type this type
descriptor is representing.
- To be added.
+ A for the type represented by this type descriptor.
To be added.
@@ -881,7 +881,7 @@
Returns a collection of event descriptors
for the object this type descriptor is representing.
- To be added.
+ An containing the event descriptors for the object represented by this type descriptor.
To be added.
@@ -1078,7 +1078,7 @@
Returns a collection of property descriptors
for the object this type descriptor is representing.
- To be added.
+ A containing the property descriptions for the object represented by this type descriptor.
To be added.
diff --git a/xml/System.ComponentModel/TypeDescriptionProvider.xml b/xml/System.ComponentModel/TypeDescriptionProvider.xml
index 14bf4f656d7..f1109614f27 100644
--- a/xml/System.ComponentModel/TypeDescriptionProvider.xml
+++ b/xml/System.ComponentModel/TypeDescriptionProvider.xml
@@ -437,10 +437,10 @@
- To be added.
+ The object for which to get the extended type descriptor.
Returns an extended custom type descriptor for the given object.
- To be added.
- An extended type descriptor is a custom type descriptor that offers properties that other objects have added to this object, but are not actually defined on the object. For example, in the .NET Framework Component Model, objects that implement the interface IExtenderProvider can "attach" properties to other objects that reside in the same logical container. The GetTypeDescriptor method does not return a type descriptor that provides these extra extended properties. GetExtendedTypeDescriptor returns the set of these extended properties. TypeDescriptor will automatically merge the results of these two property collections. Note that while the .NET Framework component model only supports extended properties this API can be used for extended attributes and events as well, if the type description provider supports it.
+ An that can provide extended metadata for the object.
+ An extended type descriptor is a custom type descriptor that offers properties that other objects have added to this object, but are not actually defined on the object. For example, in the .NET Framework Component Model, objects that implement the interface IExtenderProvider can "attach" properties to other objects that reside in the same logical container. The GetTypeDescriptorFromRegisteredType method does not return a type descriptor that provides these extra extended properties. GetExtendedTypeDescriptorFromRegisteredType returns the set of these extended properties. TypeDescriptor will automatically merge the results of these two property collections. Note that while the .NET Framework component model only supports extended properties this API can be used for extended attributes and events as well, if the type description provider supports it.
@@ -1035,10 +1035,10 @@
- To be added.
+ An instance of the type. Can be if no instance was passed to the .
Returns a custom type descriptor for the given type or object.
- To be added.
- The objectType parameter is always valid, but the instance parameter may be if no instance was passed to TypeDescriptor. The method should return a custom type descriptor for the object. If the method is not interested in providing type information for the object it should return base.
+ An that can provide metadata for the type.
+ The method should return a custom type descriptor for the object. If the method is not interested in providing type information for the object it should return base.
@@ -1072,10 +1072,10 @@
- To be added.
+ The type of object for which to retrieve the type descriptor.
Returns a custom type descriptor for the given type or object.
- To be added.
- The objectType parameter is always valid, but the instance parameter may be if no instance was passed to TypeDescriptor. The method should return a custom type descriptor for the object. If the method is not interested in providing type information for the object it should return base.
+ An that can provide metadata for the type.
+ The method should return a custom type descriptor for the object. If the method is not interested in providing type information for the object it should return base.
@@ -1117,10 +1117,10 @@
- To be added.
- To be added.
+ The type of object for which to retrieve the type descriptor.
+ An instance of the type. Can be if no instance was passed to the .
Returns a custom type descriptor for the given type or object.
- To be added.
+ An that can provide metadata for the type.
The objectType parameter is always valid, but the instance parameter may be if no instance was passed to TypeDescriptor. The method should return a custom type descriptor for the object. If the method is not interested in providing type information for the object it should return base.
This method is prototyped as virtual, and by default returns a custom type descriptor that returns empty collections for all values if no parent provider was passed. If a parent provider was passed, this method will invoke the parent provider's GetTypeDescriptorFromRegisteredType method.
@@ -1152,9 +1152,9 @@
- To be added.
+ The type to check if it was registered.
Determines whether the type was registered with its provider through .
- To be added.
+ if is registered; otherwise, .
To be added.
is .
diff --git a/xml/System.ComponentModel/TypeDescriptor.xml b/xml/System.ComponentModel/TypeDescriptor.xml
index de18cf252d8..23e164e62c5 100644
--- a/xml/System.ComponentModel/TypeDescriptor.xml
+++ b/xml/System.ComponentModel/TypeDescriptor.xml
@@ -2221,9 +2221,9 @@
- To be added.
+ A component to get the converter for.
Gets a type converter for the type of the specified component.
- To be added.
+ A for the specified component.
To be added.
@@ -2252,9 +2252,9 @@
- To be added.
+ The of the target component.
Gets a type converter for the specified registered type.
- To be added.
+ A for the specified type.
To be added.
@@ -3510,9 +3510,9 @@
- To be added.
+ The of the target component.
Gets a collection of events for a specified type of component.
- To be added.
+ An with the events for this component.
To be added.
@@ -4163,9 +4163,9 @@
- To be added.
+ A component to get the properties for.
Gets a collection of properties for a specified component.
- To be added.
+ A with the properties for the specified component.
To be added.
@@ -4194,9 +4194,9 @@
- To be added.
+ A that represents the component to get properties for.
Gets a collection of properties for a specified type.
- To be added.
+ A with the properties for a specified type of component.
To be added.