2010-06-18 1 views

답변

2

Order Option Request을 사용해 보셨습니까?

// Create the request. 
OrderOptionRequest orderOptionRequest = new OrderOptionRequest(); 

// Set the properties for the request 
orderOptionRequest.AttributeLogicalName = "address1_addresstypecode"; 
orderOptionRequest.EntityLogicalName = EntityName.contact.ToString(); 

// Set the order for the options. 
orderOptionRequest.Values = new int[] { 4, 3, 2, 1 }; 

// Execute the request 
OrderOptionResponse orderOptionResponse = (OrderOptionResponse)metadataService.Execute(orderOptionRequest); 
+0

저기! 나는 뭔가를 놓친다는 것을 알았다. 고마워요! – dsabater