Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class AddLocalGroupMemberCommand : PSCmdlet
[ValidateNotNull]
public Microsoft.PowerShell.Commands.LocalGroup Group
{
get { return this.group;}
get { return this.group; }

set { this.group = value; }
}
Expand All @@ -62,7 +62,7 @@ public Microsoft.PowerShell.Commands.LocalGroup Group
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public Microsoft.PowerShell.Commands.LocalPrincipal[] Member
{
get { return this.member;}
get { return this.member; }

set { this.member = value; }
}
Expand All @@ -79,7 +79,7 @@ public Microsoft.PowerShell.Commands.LocalPrincipal[] Member
[ValidateNotNullOrEmpty]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -96,7 +96,7 @@ public string Name
[ValidateNotNull]
public System.Security.Principal.SecurityIdentifier SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public string[] Name
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public System.Security.Principal.SecurityIdentifier[] SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ public string[] Name
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public System.Security.Principal.SecurityIdentifier[] SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public string[] Name
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public System.Security.Principal.SecurityIdentifier[] SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GetLocalGroupMemberCommand : Cmdlet
[ValidateNotNull]
public Microsoft.PowerShell.Commands.LocalGroup Group
{
get { return this.group;}
get { return this.group; }

set { this.group = value; }
}
Expand All @@ -56,7 +56,7 @@ public Microsoft.PowerShell.Commands.LocalGroup Group
[ValidateNotNullOrEmpty]
public string Member
{
get { return this.member;}
get { return this.member; }

set { this.member = value; }
}
Expand All @@ -75,7 +75,7 @@ public string Member
[ValidateNotNullOrEmpty]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -94,7 +94,7 @@ public string Name
[ValidateNotNullOrEmpty]
public System.Security.Principal.SecurityIdentifier SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class NewLocalGroupCommand : Cmdlet
[ValidateNotNull]
public string Description
{
get { return this.description;}
get { return this.description; }

set { this.description = value; }
}
Expand All @@ -55,7 +55,7 @@ public string Description
[ValidateLength(1, 256)]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ public class NewLocalUserCommand : PSCmdlet
[Parameter(ValueFromPipelineByPropertyName = true)]
public System.DateTime AccountExpires
{
get { return this.accountexpires;}
get { return this.accountexpires; }

set { this.accountexpires = value; }
}
Expand All @@ -64,7 +64,7 @@ public System.DateTime AccountExpires
[Parameter(ValueFromPipelineByPropertyName = true)]
public System.Management.Automation.SwitchParameter AccountNeverExpires
{
get { return this.accountneverexpires;}
get { return this.accountneverexpires; }

set { this.accountneverexpires = value; }
}
Expand All @@ -79,7 +79,7 @@ public System.Management.Automation.SwitchParameter AccountNeverExpires
[ValidateNotNull]
public string Description
{
get { return this.description;}
get { return this.description; }

set { this.description = value; }
}
Expand All @@ -93,7 +93,7 @@ public string Description
[Parameter(ValueFromPipelineByPropertyName = true)]
public System.Management.Automation.SwitchParameter Disabled
{
get { return this.disabled;}
get { return this.disabled; }

set { this.disabled = value; }
}
Expand All @@ -109,7 +109,7 @@ public System.Management.Automation.SwitchParameter Disabled
[ValidateNotNull]
public string FullName
{
get { return this.fullname;}
get { return this.fullname; }

set { this.fullname = value; }
}
Expand All @@ -129,7 +129,7 @@ public string FullName
[ValidateLength(1, 20)]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -147,7 +147,7 @@ public string Name
[ValidateNotNull]
public System.Security.SecureString Password
{
get { return this.password;}
get { return this.password; }

set { this.password = value; }
}
Expand Down Expand Up @@ -193,7 +193,7 @@ public System.Management.Automation.SwitchParameter PasswordNeverExpires
[Parameter(ValueFromPipelineByPropertyName = true)]
public System.Management.Automation.SwitchParameter UserMayNotChangePassword
{
get { return this.usermaynotchangepassword;}
get { return this.usermaynotchangepassword; }

set { this.usermaynotchangepassword = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class RemoveLocalGroupMemberCommand : PSCmdlet
[ValidateNotNull]
public Microsoft.PowerShell.Commands.LocalGroup Group
{
get { return this.group;}
get { return this.group; }

set { this.group = value; }
}
Expand All @@ -62,7 +62,7 @@ public Microsoft.PowerShell.Commands.LocalGroup Group
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public Microsoft.PowerShell.Commands.LocalPrincipal[] Member
{
get { return this.member;}
get { return this.member; }

set { this.member = value; }
}
Expand All @@ -79,7 +79,7 @@ public Microsoft.PowerShell.Commands.LocalPrincipal[] Member
[ValidateNotNullOrEmpty]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -96,7 +96,7 @@ public string Name
[ValidateNotNull]
public System.Security.Principal.SecurityIdentifier SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ public class RemoveLocalUserCommand : Cmdlet
[SuppressMessage("Microsoft.Performance", "CA1819:PropertiesShouldNotReturnArrays")]
public Microsoft.PowerShell.Commands.LocalUser[] InputObject
{
get { return this.inputobject;}
get { return this.inputobject; }

set { this.inputobject = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class RenameLocalGroupCommand : Cmdlet
[ValidateNotNullOrEmpty]
public Microsoft.PowerShell.Commands.LocalGroup InputObject
{
get { return this.inputobject;}
get { return this.inputobject; }

set { this.inputobject = value; }
}
Expand All @@ -61,7 +61,7 @@ public Microsoft.PowerShell.Commands.LocalGroup InputObject
[ValidateNotNullOrEmpty]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -78,7 +78,7 @@ public string Name
[ValidateNotNullOrEmpty]
public string NewName
{
get { return this.newname;}
get { return this.newname; }

set { this.newname = value; }
}
Expand All @@ -97,7 +97,7 @@ public string NewName
[ValidateNotNullOrEmpty]
public System.Security.Principal.SecurityIdentifier SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ public class RenameLocalUserCommand : Cmdlet
[ValidateNotNull]
public Microsoft.PowerShell.Commands.LocalUser InputObject
{
get { return this.inputobject;}
get { return this.inputobject; }

set { this.inputobject = value; }
}
Expand All @@ -61,7 +61,7 @@ public Microsoft.PowerShell.Commands.LocalUser InputObject
[ValidateNotNullOrEmpty]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -78,7 +78,7 @@ public string Name
[ValidateNotNullOrEmpty]
public string NewName
{
get { return this.newname;}
get { return this.newname; }

set { this.newname = value; }
}
Expand All @@ -97,7 +97,7 @@ public string NewName
[ValidateNotNull]
public System.Security.Principal.SecurityIdentifier SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public class SetLocalGroupCommand : Cmdlet
[ValidateNotNull]
public string Description
{
get { return this.description;}
get { return this.description; }

set { this.description = value; }
}
Expand All @@ -56,7 +56,7 @@ public string Description
[ValidateNotNull]
public Microsoft.PowerShell.Commands.LocalGroup InputObject
{
get { return this.inputobject;}
get { return this.inputobject; }

set { this.inputobject = value; }
}
Expand All @@ -76,7 +76,7 @@ public Microsoft.PowerShell.Commands.LocalGroup InputObject
[ValidateNotNull]
public string Name
{
get { return this.name;}
get { return this.name; }

set { this.name = value; }
}
Expand All @@ -95,7 +95,7 @@ public string Name
[ValidateNotNull]
public System.Security.Principal.SecurityIdentifier SID
{
get { return this.sid;}
get { return this.sid; }

set { this.sid = value; }
}
Expand Down
Loading