Skip to content

Commit 797d018

Browse files
author
Daniel Schulte
committed
Putting get and set on the same line.
1 parent fc5543e commit 797d018

File tree

3 files changed

+10
-20
lines changed

3 files changed

+10
-20
lines changed

src/ServiceManagement/Network/Commands.Network/Gateway/GetAzureVNetGatewayIPsecParameters.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,16 +24,14 @@ public class GetAzureVNetGatewayIPsecParameters : NetworkCmdletBase
2424
[ValidateNotNullOrEmpty]
2525
public string VNetName
2626
{
27-
get;
28-
set;
27+
get; set;
2928
}
3029

3130
[Parameter(Position = 1, Mandatory = true, HelpMessage = "The local network site name.")]
3231
[ValidateNotNullOrEmpty]
3332
public string LocalNetworkSiteName
3433
{
35-
get;
36-
set;
34+
get; set;
3735
}
3836

3937
public override void ExecuteCmdlet()

src/ServiceManagement/Network/Commands.Network/Gateway/ResizeAzureVnetGateway.cs

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,13 @@ public class ResizeAzureVNetGateway : NetworkCmdletBase
2323
[Parameter(Position = 0, Mandatory = true, HelpMessage = "Virtual network name.")]
2424
public string VNetName
2525
{
26-
get;
27-
set;
26+
get; set;
2827
}
2928

3029
[Parameter(Position = 1, Mandatory = true, HelpMessage = "The SKU that the existing gateway will be resized to.")]
3130
public string GatewaySKU
3231
{
33-
get;
34-
set;
32+
get; set;
3533
}
3634

3735
public override void ExecuteCmdlet()

src/ServiceManagement/Network/Commands.Network/Gateway/SetAzureVNetGatewayIPsecParameters.cs

Lines changed: 6 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -24,52 +24,46 @@ public class SetAzureVNetGatewayIPsecParameters : NetworkCmdletBase
2424
[ValidateNotNullOrEmpty]
2525
public string VNetName
2626
{
27-
get;
28-
set;
27+
get; set;
2928
}
3029

3130
[Parameter(Position = 1, Mandatory = true, HelpMessage = "The local network site name.")]
3231
[ValidateNotNullOrEmpty]
3332
public string LocalNetworkSiteName
3433
{
35-
get;
36-
set;
34+
get; set;
3735
}
3836

3937
[Parameter(Position = 2, Mandatory = false, HelpMessage = "The type of encryption that will " +
4038
"be used for the connection between the virtual network gateway and the local network. " +
4139
"Valid values are RequireEncryption and NoEncryption.")]
4240
public string EncryptionType
4341
{
44-
get;
45-
set;
42+
get; set;
4643
}
4744

4845
[Parameter(Position = 3, Mandatory = false, HelpMessage = "The PFS gruop that will be used " +
4946
"for the connection between the virtual network gateway and the local network. Valid " +
5047
"values are RequireEncryption and NoEncryption.")]
5148
public string PfsGroup
5249
{
53-
get;
54-
set;
50+
get; set;
5551
}
5652

5753
[Parameter(Position = 4, Mandatory = false, HelpMessage = "The SA Data Size Kilobytes value " +
5854
"is used to determine how many kilobytes of traffic can be sent before the SA for the" +
5955
"connection will be renegotiated.")]
6056
public int SADataSizeKilobytes
6157
{
62-
get;
63-
set;
58+
get; set;
6459
}
6560

6661
[Parameter(Position = 5, Mandatory = false, HelpMessage = "The SA Lifetime Seconds value " +
6762
"is used to determine how long (in seconds) this connection's SA will be valid before " +
6863
"a new SA will be negotiated.")]
6964
public int SALifetimeSeconds
7065
{
71-
get;
72-
set;
66+
get; set;
7367
}
7468

7569
public override void ExecuteCmdlet()

0 commit comments

Comments
 (0)