-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix inappropriate usages of xml tags in Az.Accounts #18117
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No change log is expected as there are only XML tag changes
@@ -117,7 +117,7 @@ public void OnModuleLoad(string resourceId, string moduleName, PipelineChangeDel | |||
/// <param name="exception">The <see cref="System.Exception" /> that is being thrown (if available)</param> | |||
public async Task EventListener(string id, CancellationToken cancellationToken, GetEventData getEventData, SignalDelegate signal, InvocationInfo invocationInfo, string parameterSetName, string correlationId, string processRecordId, System.Exception exception) | |||
{ | |||
/// Drain the queue of ADAL events whenever an event is fired | |||
// Drain the queue of ADAL events whenever an event is fired |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
/// is a xml tag, here should be a comment
/// <returns>A <see cref="System.String[]"/> containing the valid options for the completer.</returns> | ||
/// <param name="resourceTypes">An <see cref="System.String"/>[] containing resource (or resource types) being completed </param > | ||
/// <param name="parentResourceParameterNames"> An <see cref="System.String"/>[] containing list of parent resource parameter names (if applicable)</param > | ||
/// <returns>A <see cref="System.String"/>[] containing the valid options for the completer.</returns> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can't find type System.String[]
/// <remarks> | ||
/// In PowerShell, we add on the EventDataConverter to support sending events between modules. | ||
/// Obviously, this code would need to be duplcated on both modules. | ||
/// This is preferable to sharing a common library, as versioning makes that problematic. | ||
/// </remarks> | ||
[TypeConverter(typeof(EventDataConverter))] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tag should above attribute
/// <para>invocationInfo: The <see cref="System.Management.Automation.InvocationInfo" /> from the cmdlet</para> | ||
/// <para>correlationId: The <see cref="string" /> containing the correlation id for the cmdlet</para> | ||
/// <para>name: The <see cref="string" /> parameter name being asked for</para> | ||
/// </example> | ||
public GetParameterDelegate GetParameterValue; | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
There are no parameters called resourceId,moduleName, etc. Move them to example block
Description
To resolve Azure/autorest.powershell#843
Checklist
CONTRIBUTING.md
ChangeLog.md
file(s) has been updated:ChangeLog.md
file can be found atsrc/{{SERVICE}}/{{SERVICE}}/ChangeLog.md
## Upcoming Release
header -- no new version header should be added