Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
4answers
6k views

WCF: Exposing readonly DataMember properties without set?

I have a server side class which I make available on the client side through a [DataContract]. This class has a readonly field which I'd like to make available through a property. However, I'm unable ...
6
votes
2answers
181 views

Is the DataMember IsRequired attribute in combination with a Nullable type contradictory?

I came across this today in a WCF contract: [DataMember(IsRequired = true)] public DateTime? LastModified { get; set; } What are the consequences of IsRequired = True and a nullable DateTime? They ...
5
votes
1answer
186 views

Adding a DataMember to an existing DataContract in WCF

I would like to add a DataMember to one of my DataContracts. I would like to know how existing servers and clients will behave in the presence of a new DataMember if one of the parties isn't updated. ...
5
votes
3answers
2k views

Sending a Tuple object over WCF?

Is the System.Tuple class supported by WCF's Data Contract Serializer (i.e., can I pass Tuple objects to WCF calls and/or receive them as part or all of the result)? I found this page, but not the ...
4
votes
1answer
769 views

Why is using [DataMember(EmitDefaultValue = false)] not recommended?

In WCF you can define a contract using the [DataContract] and [DataMember] attributes, like this: [DataContract] public class Sample { [DataMember(EmitDefaultValue = false, IsRequired = false)] ...
4
votes
2answers
7k views

.NET base type cannot be serialized by WCF

I'm writing a WCF service and want to expose some custom configuration elements (e.g. Custom ConfigurationSection and ConnectionStringSettings) so that I can modify the service's configuration. One of ...
3
votes
1answer
109 views

Serialization DataMember (name) override issue

I am using a DataContractJsonSerializer and have an issue with the DataMember Name. I made a base class and several derived classes. I need the derived classes because I have different json strings. ...
3
votes
2answers
110 views

WCF Serialization Information outside class definition

Suppose this simple scenario: My client has an already working .net application and he/she wants to expose some functionality through WCF. So he gives me an assembly, containg a public class that ...
3
votes
1answer
812 views

WCF - Decorating IEnumerable<T> with DataMember causes Exception:The underlying connection was closed: The connection was closed unexpectedly

I have created a WCF service which returns IEnumerable<CyberResourceProvisioningAction>. The CyberResourceProvisioningAction type has a property of AccountInformation ...
3
votes
5answers
4k views

WCF DataContract/ServiceOperation involving .NET XmlDocument type

im just wondering about data contracts to be sent over the wire in WCF communication. i know for the sake of interoperability it is not advisable (maybe not even allowed?) to send native .NET types as ...
2
votes
3answers
106 views

DataContract, defaut DataMember value

Is there a way to choose default value of attribute that are not in the xml file during deserialization. If the mAge attribute is not present in the xml file, I want to use a default value of 18. Is ...
2
votes
1answer
73 views

WCF DataContract With List of RegExs Won't Serialize Properly

I have a class that looks something like this: [DataContract] public class InboundMailbox { public const char EmailSeparator = ';'; [DataMember] public string POP3Host { get; set; } ...
2
votes
1answer
107 views

Winforms data-binding: Period-delimited navigation path as DataMember causes exception. Why?

I keep having problems with Winforms data-binding, more specifically, whenever I specify a period-separated property path to be used as DataMember. For example: public partial class SomeForm : ...
2
votes
1answer
108 views

DataMember's name

Is it possible somehow to add DataContract/DataMember attributes for existing binary classes (available only as compiled dll)? The main goal is to set DataMember name, to avoid ugly property names for ...
2
votes
3answers
406 views

What does it mean to put DataMemberAttribute on interface member?

What does it mean to put DataMemberAttribute on interface member? How does this affects derived classes? tnx
2
votes
2answers
327 views

Can I prevent a specific datamember from being deserialized?

I have a datacontract like this [DataContract] class MyDC { [DataMember] public string DM1; [DataMember] public string DM2; [DataMember] public string DM3; } and ...
2
votes
3answers
464 views

Is it necessary to declare attribute [DataMember(Order=n)] on public method?

In my solution, I have created public class to store value and already declare [DataContract/DataMember] attribute. For example, [DataContract] public class MeterSizeInfo { string _meterSizeId; ...
2
votes
1answer
179 views

.Net Represent xml in class without xsd

How would I represent something like this <product> <sku>12452</sku> <attribute name="details">good stuff</attribute> <attribute ...
1
vote
3answers
40 views

Inherited member function accessing data members

Consider the sample code below: #include <iostream> using namespace std; class A { private: static int a; int b; protected: public: A() : b(0) {} ...
1
vote
2answers
232 views

Standard says, we can define static data member template like class template and function template, but how exactly?

The chapter of Templates in the C++03 Standard starts with the following: A template defines a family of classes or functions. template-declaration: exportopt template < ...
1
vote
3answers
342 views

DataMember vs DataMemberAttribute

[DataContract] public class SearchResults { [DataMember] public List<SearchDetail> PList { get; set; } [DataMemberAttribute] public int Count { get; set; } } The metadata for ...
1
vote
1answer
162 views

Content-based Correlation in WF 4 on inherited DataMember property

In Windows Workflow Foundation under .NET 4.0, is there a way to correlate operations based on an inherited data member? For example given the following classes [DataContract] ...
1
vote
3answers
1k views

WCF DataMember attribute for read-only fields?

I am trying to create a class with a read-only Id field, however I am having problems retaining the value when the object passes through the WCF server. I cannot set the [DataMember] attribute on the ...
1
vote
1answer
1k views

WCF web service Data Members defaulting to null

I am new to WCF and created a simple REST service to accept an order object (series of strings from XML file), insert that data into a database, and then return an order object that contains the ...
1
vote
1answer
672 views

WCF Read DataMember Name attribute

Hi Guys I have a very simple class called person. public class Person{ [DataMember(Name="MyName")] public string Name { get;set;} } If I try to serialize or de-serialize, everything works ...
1
vote
3answers
971 views

WCF DataMember Serializing questions

Ok, so I was part way through the long winded process of creating DTOs for sending my model over the wire and I don't feel like I'm going down the right route. My issue is that most of the entities ...
1
vote
1answer
476 views

Adding a DataMember to a different namespace to the DataContract

With the XmlSerializer I can have my members in different namespaces to the parent type. Can I do the same thing with DataContractSerializer? I would like the following XML: <h:Type ...
1
vote
2answers
2k views

Custom datacontract / datamember name

I have a following problem. A customer requested a web service that returns data in following format: <status> <name1>Some name</name1> ... </status> But when an error ...
0
votes
1answer
27 views

Data member default values, how to figure out whether something was really sent?

By default, WCF deserializes missing elements into default values like null, 0 or false. The problem with this approach is that if it's a basic type like number 0 I'm not sure whether it means the ...
0
votes
1answer
17 views

WCF AJAX Response fail when Using System.Array as a DataMember

When i m trying to get Sytem.Array As data member in Json Class object it gives failure response . My WCf web-service i am using following method userActivities which return class Activity.I have ...
0
votes
1answer
34 views

DataMember name property is ignored in webservice

In my project I have a view model City that is exposed by wcf. One of the properties is named differently then the already exposed contract dictates. Therefore I added the DataMember attribute and set ...
0
votes
0answers
13 views

DataMember value setting info requested from a newb learning DBReader

I'm using a dbReader and I know I'm getting the right values returned but I need to set those values to public String Product_ID to be returned. I can't seem to find the answer from other questions ...
0
votes
1answer
43 views

DataContract composite Class

I have a problem with serialization composite class (using WCF Service). here my class in namespace1 (it is not in service namespace) : [DataContract] public class UpData { ...
0
votes
2answers
75 views

Is there a way to reach the DataMember of a BindingSource as a collection object in its own right?

Say we have a class of Customer and that has a child object of Orders. In our Winforms application we might bind the main form to a list of Customers. A grid on the main form lists the customer's ...
0
votes
2answers
212 views

CollectionDataContract serialization not adding custom properties (DataMember)

We have a legacy system that needs to be fed (XML) data in a most unstructured format. Is the following even possible with the .NET DataContractSerializer? Given the following DataContracts ...
0
votes
1answer
139 views

Custom DataMember names to deserialize a JSON class

I cannot manage to specify custom names for properties. I receive some JSON from the server (which I cannot change) with some ugly property names. I'd like the C# code to stick to naming conventions. ...
0
votes
2answers
76 views

C++ data members. Goal: Initialize in constructor then leave alone, will const work here?

I have the following struct dweDMPair { const dweller *occu; const double sqDM; float prob; dweDMPair(dweller *inOccu, double sqdm) : occu(inOccu), ...
0
votes
3answers
66 views

Is it appropriate to declare a non-static constant data member inside a class while coding?

data member inside a class can be const but only if its static. otherwise we need to have a constructor to initialize a constant inside a class. can we declare a const data member inside a class? ...
0
votes
1answer
104 views

Using a datamember type of list

i'm new with wcf and i create a DataContract like this : [DataContract] public class directoriesUser { [DataMember] public string NameDir { get; set; } ...
0
votes
1answer
354 views

WCF DataMember EmitDefaultValue on value type? (but set my own default value)

I have the following: [DataContract] public class Foo { [DataMember(EmitDefaultValue = true) public bool Bar { get; set; } } 2 Questions: What really happens here because my bool can't ...
0
votes
0answers
39 views

DataMember Order: Is there any point to it?

Simple question: Is there any benefit to actually using the Order property of a DataMemberAttribute?
0
votes
1answer
295 views

WCF Deserialization resets DataMember value to default after OnDeserializing callback

I have developed a WCF Service Application hosted in IIS 7.5 targeting .NET 3.5 configured with only a basicHttpBinding endpoint. The OperationContract signature consists of a Composite type where one ...
0
votes
2answers
258 views

WCF and [DATACONTRACT]+[DATAMEMBER]

I was wondering how to add the DataContract to my service? I mean, I know I have to create a class, put [DATACONTRACT] on top of it and then add [DATAMEMBER] on top of each members, but then how to ...
0
votes
3answers
227 views

Can I get DataMember names in the code?

in one project, I use datamember to serialize a class to an xml file, like, [DataMember] public string Member1; later I query the xml to get one value out, like: ...
0
votes
0answers
128 views

WCF DataContract Class in .NET 2

Apologies for the vague question title, the following is a tad complicated to summarise. I have a legacy framework that is based on .NET 2. Part of this legacy application contains a webservice that ...
0
votes
1answer
99 views

Tag to edit DataMember of user control in visual studio designer

I have the [AttributeProvider (typeof(IListSource))] tag which lets me edit the DataSource field via dropdown list in the visual studio editor. Is there a similar tag to use so i can edit the ...
0
votes
0answers
298 views

DataMember Emit Default Value

I have a .Net Web Service function that can accept one string. That function will then serialize that string to JSON, but I only want to serialize it if it's value is not "". I found these ...
0
votes
0answers
150 views

FXCop / Code Analysis on WCF DataContract Classes with Array - Creates CA1819 Error

I have the following WCF data contract class: [DataContract] public class BinaryResponse : ResponseBase { [DataMember] public byte[] Payload { get; set; } } Nice and simple, works exactly ...
0
votes
2answers
168 views

Change datamember name based on method

[DataContract()] public class Contract { ......... Some Properties with DataMembers Attribute. ............ .............. [DataMember(Name = "FirstName")] public string Name { ...
0
votes
0answers
294 views

WCF XmlElementAttribute

I'm trying to write a WCF servive that previously was written in Java. This is taken from Reference.cs class within the Web Service Reference ( that was written in Java ) ...

1 2