Share via


NewCimInstanceCommand.Property Property

 

Gets and sets the Property parameter, which enables the user to specify instances with specific property values. Example: -Property @{P1="Value1";P2="Value2"}.

Namespace:   Microsoft.Management.Infrastructure.CimCmdlets
Assembly:  Microsoft.Management.Infrastructure.CimCmdlets (in Microsoft.Management.Infrastructure.CimCmdlets.dll)

Syntax

[ParameterAttribute(Position = 1, ValueFromPipelineByPropertyName = true)]
[AliasAttribute(new string[] { ... })]
public IDictionary Property { get; set; }
public:
[ParameterAttribute(Position = 1, ValueFromPipelineByPropertyName = true)]
[AliasAttribute(new array<String^>^ { ... })]
property IDictionary^ Property {
    IDictionary^ get();
    void set(IDictionary^ value);
}
[<ParameterAttribute(Position = 1, ValueFromPipelineByPropertyName = true)>]
[<AliasAttribute([| ... |])>]
member Property : IDictionary with get, set
<ParameterAttribute(Position := 1, ValueFromPipelineByPropertyName := True)>
<AliasAttribute(New String() { ... })>
Public Property Property As IDictionary

Property Value

Type: System.Collections.IDictionary

Returns IDictionary.

See Also

NewCimInstanceCommand Class
Microsoft.Management.Infrastructure.CimCmdlets Namespace

Return to top