General method | <Begin with a present-tense third-person verb.> | Application.DoEventsmethod summary: Processes Windows messages that are currently in the message queue. |
Task-returning or async method | Asynchronously<present-tense third-person verb> <XXX>. | HttpClient.GetStringAsyncmethod summary: Asynchronously sends a GET request to the specified Uri. |
Dispose method, general overload | Releases the resources used by the current instance of the<class> class. | ComponentDesigner.Disposemethod summary: Releases the resources used by the current instance of theComponentDesigner class. |
Dispose() method | Releases the resources used by the current instance of the<class> class. | Timer.Disposemethod summary: Releases the resources used by the current instance of theTimer class. |
Dispose(Boolean) method | Called by theDispose() andFinalize() methods to release the managed and unmanaged resources used by the current instance of the<class> class. | DocumentDesigner.Disposemethod (Boolean): Called by theDispose() andFinalize() methods to release the managed and unmanaged resources used by the current instance of theDocumentDesigner class. |
ShouldSerialize<Property> method | Indicates whether the<Property> property should be persisted. | DataGrid.ShouldSerializeBackgroundColormethod summary: Indicates whether theBackgroundColor property should be persisted. |
Reset<Property> method | Resets the<Property> property to its default value. | Control.ResetTextmethod summary: Resets theText property to its default value. |
Method that always throws an exception | Throws a/an<ExceptionType> exception in all cases.
Note: In the Remarks section, explain why the member is not supported. | DataGridViewSelectedRowCollection.Clearmethod summary: Throws aNotSupportedException exception in all cases. |
Explicit interface method implementation | <Copy from the interface member if appropriate> | |