A data contract is a formal agreement between a service and a client that abstractly describes the data to be exchanged.
I need to have some data members get some values when I create an instance of the DataContract on the …
wcf datacontractUsing VS 2008 & .NET 3.5 SP1: I am using WCF to allow clients to connect to a service that reads and …
wcf entity-framework datacontract[DataContract] public class SearchCriteria { [DataMember] public string CountryID { get; set; } } [DataContract] public class CitySearchCriteria: SearchCriteria { [DataMember] public string CityID { get; …
c# oop casting datacontract derived-classI have a class that I need to be able to serialize to a SQLServer session variable and be available …
c# wcf asp.net-3.5 datacontract serializableHow would I tell the WCF service what KnownTypes to use when passing data back to the client? I know …
wcf datacontractserializer datacontract serviceknowntypeI recently noticed in one of the articles the wcf service operation returned a collectiondatacontract Users GetUsers(string someInput); And …
c# wcf c#-4.0 datacontractI was curious if someone could outline which types of WCF contract (interface) changes on the server side would break …
wcf datacontract servicecontract operationcontractI'm writing a WCF service and want to expose some custom configuration elements (e.g. Custom ConfigurationSection and ConnectionStringSettings) so …
wcf serialization datacontract datamember configurationelementIs there any tool allowing to generate DataContract entity definitions based on a JSON sample? I'm really missing the old …
c# json serialization datacontract datacontractjsonserializerI have a ServiceContract which returns dynamic type and looks like following: public dynamic LoginViaOpenId(string openIdUrl) The dynamic return …
wcf datacontract