|
public Guid VmId |
|
{ |
|
get { return _vmId; } |
|
|
|
set { _vmId = value; } |
|
} |
|
|
|
public Guid ServiceId |
|
{ |
|
get { return _serviceId; } |
|
|
|
set { _vmId = value; } |
|
} |
Why is the setter for ServiceId assigning to _vmId? It is unclear whether this is intended behaviour or not.
PowerShell/src/System.Management.Automation/engine/remoting/common/RemoteSessionHyperVSocket.cs
Lines 45 to 57 in a16f3eb
Why is the setter for
ServiceIdassigning to_vmId? It is unclear whether this is intended behaviour or not.