how to hide a parameter in contract class
Many times you get into situation where you want to add a parameter but hide it from the user .
In that case you can simple add the below signature/attribute above the class.
[DataMemberAttribute, SysOperationControlVisibilityAttribute(false)]
public ItemId parmItemid(ItemId _itemid = itemId)
{
itemid = _itemid;
return itemid;
}
Thanks!!!!!!!!!!!
No comments:
Post a Comment