Примеры ошибок, обнаруженных с помощью диагностики V3143
V3143. The 'value' parameter is rewritten inside a property setter, and is not used after that.
Azure PowerShell
V3143 The 'value' parameter is rewritten inside a property setter, and is not used after that. NewAzureIntegrationAccountPartnerCommand.cs 67
[Parameter(Mandatory = false,
HelpMessage = "The integration account partner type.",
ValueFromPipelineByPropertyName = false)]
[ValidateSet("B2B", IgnoreCase = false)]
[ValidateNotNullOrEmpty]
public string PartnerType
{
get { return this.partnerType; }
set { value = this.partnerType; } // <=
}
/// <summary>
/// Default partner type.
/// </summary>
private string partnerType = "B2B";
Similar errors can be found in some other places:
- V3143 The 'value' parameter is rewritten inside a property setter, and is not used after that. NewAzureIntegrationAccountSchemaCommand.cs 79
- V3143 The 'value' parameter is rewritten inside a property setter, and is not used after that. NewAzureIntegrationAccountSchemaCommand.cs 87
- V3143 The 'value' parameter is rewritten inside a property setter, and is not used after that. UpdateAzureIntegrationAccountPartnerCommand.cs 67
- And 2 additional diagnostic messages.