Property
|
Description
|
Items
|
The collection of ListItem objects that represents the
items in the control. This property returns an object of type
ListItemCollection.
|
Rows
|
Specifies the number of items displayed in the box. If
actual list contains more rows than displayed then a scroll bar is added.
|
SelectedIndex
|
The index of the currently selected item. If more than one
item is selected, then the index of the first selected item. If no item is
selected, the value of this property is -1.
|
SelectedValue
|
The value of the currently selected item. If more than one
item is selected, then the value of the first selected item. If no item is
selected, the value of this property is an empty string("").
|
SelectionMode
|
Indicates whether a list box allows single selections or
multiple selections.
|
In my application it was an issue because client was encoding the body content.But I was not specifying the encoding or media type. I have specified and resolved the issue as below var content = new StringContent ( postData , Encoding . UTF8 , "application/json" ); httpClient . PostAsync ( uri , content );
Comments
Post a Comment