OrganizationRequest.Parameters Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Gets or sets the collection of parameters for the request. Required, but is supplied by derived classes.
public:
property Microsoft::Xrm::Sdk::ParameterCollection ^ Parameters { Microsoft::Xrm::Sdk::ParameterCollection ^ get(); void set(Microsoft::Xrm::Sdk::ParameterCollection ^ value); };
[System.Runtime.Serialization.DataMember]
public Microsoft.Xrm.Sdk.ParameterCollection Parameters { get; set; }
[<System.Runtime.Serialization.DataMember>]
member this.Parameters : Microsoft.Xrm.Sdk.ParameterCollection with get, set
Public Property Parameters As ParameterCollection
Property Value
The collection of parameters for the request. Required, but is supplied by derived classes.
- Attributes
Remarks
The parameters collection is populated automatically if you are using a derived message class such as AssignRequest. Otherwise you must populate the collection with the parameters required for the message.