The datamember tag has no wiki summary.
0
votes
2answers
23 views
Compile Error: Undeclared member that is actually declared
I have created a class that works as it should except for three supplemental member functions. In all of the other public member functions I refer to a private data member and I have no trouble ...
1
vote
1answer
17 views
Remove Order from datamember
Is there anything which can be use to avoid using Order attribute in DataMember while passing parameters from xml to WCF service
[DataMember(Name = "Name", Order = 2)]
...
[DataMember(Name = "ID", ...
0
votes
1answer
26 views
How to use selective property of class as Data Member in Rest Service
I am trying to use a class as DataContract and have mark there property as DataMember.
[DataContract]
public class Contact
{
[DataMember]
public string FirstName { get; set; }
[DataMember]
...
0
votes
0answers
15 views
Changing datamembers within a limited scope
I am looking for a way to change the value of some datamembers of a C++ class, but in a temporary fashion, i.e. limited to a given scope {} within my main program. Say I just have a trivial setter:
...
0
votes
0answers
44 views
Why can't I use my data contracts form my IService?
I have the following data contracts defined in my IService:
[DataContract]
public class PumpClass {
[DataMember]
public int ID { get; set; }
[DataMember]
public double litresPumped { ...
1
vote
1answer
37 views
R datamembers and Attributes
I am very new to R and am not sure about the proper language when referring to datamembers and attributes of an object. I have an object-oriented programming language background in Java so I am ...
0
votes
3answers
95 views
Access non static data member outside class
Is it possible to access non static data members outside their class? Say you have an example like the following. I know it does not make much sense as an example, but I just want to understand how to ...
0
votes
5answers
76 views
ID data member in c++ class
My teacher required us to create ID data member that's generated automatically, and once established it can’t be modified.
What is the most appropriate type?
if the answer is
static const int ID;
...
0
votes
1answer
180 views
WCF An error occurred while receiving the HTTP response
Here's what my WCF service should be returning. When I command PaymentData out of ResponseModel and add other DataMembers in that class it works.
[DataContract]
public class ResponseModel
{
...
0
votes
3answers
169 views
How can I add datacontract to a type (xxxDataTable) which is created by a typed data set?
I have a typed data set and I want to pass tables(which are created by .net) or collection of rows instead of objects(which I would be creating) or collecion of objects to the client side. Silverlight ...
0
votes
0answers
18 views
Object serialization using DataContract, does this look ok?
using System;
using System.Collections.Generic;
using System.Linq;
using System.Runtime.Serialization;
using System.Text;
using System.Threading.Tasks;
using Windows.Networking.Sockets;
namespace ...
-2
votes
3answers
73 views
Where is memory allocated for data members in java which has been initialized @ declaration point …? [closed]
In java it is possible to write a code like
public class Print{
int n=10;
String path="C:\\file.txt";
}
Where does the memory for these data members are allocated before object creation ??
And i ...
0
votes
1answer
54 views
Is there a limit for DataMembers in DataContracts
I've created a class and added the attribute DataContract, made some Properties with DataMember-Attribute.
After I add the sixth DataMember the object won't serialize... by removing the attribute it ...
0
votes
1answer
134 views
how to WCF dynamic DataMember?
example: a Customer class have 100 data member(id, name, age, address...etc) to be serialization to JSON.
In Config file such as Web.config, can set a output list to serialize JSON ouptut.
If ...
0
votes
1answer
158 views
C# .Net How to determine if nullable DataMember value has been supplied
I'm in the process of implementing a WCF/Soap service operation and have defined several of the data contract's members as not required (IsRequired = false).
My question relates to the following two ...
0
votes
2answers
161 views
Can I expose a DataMember of a class that is not a DataContract?
Can I do something like this:
public abstract class DeletableEntity
{
[DataMember]
public bool Delete { get; set; }
}
[DataContract]
public class MyClass : DeletableEntity
{
[DataMember]
...
1
vote
0answers
326 views
Corrupted double-linked list error
I am working on a Qt/OpenGL gui that makes physics animation. I try to do rotation with mousePressEvent and mouseMoveEvent functions.
For this, I try to add QPoint lasPos data member for mouse ...
2
votes
1answer
146 views
WCF Service Implementation
I've scoured the internet, several books, and even consulted some peers. Nothing really states if what I'm attempting to do is bad practice or not. The short; is I'm just doing a fire-and-forget ...
1
vote
1answer
258 views
How to check if field exists that has isRequired set to true in WCF
I have a DataMember(isRequired:=True) that property is called FillerInd. Now how do you tell if that field is empty or does not exist? I was reading online and you have to do some Serialization and ...
0
votes
1answer
947 views
DataMember attributes for Data validation
I am looking to place attributes on my WCF data contract members to validate string length and possibly use regex for more granular parameter validation.
I can the [Range] attribute for numeric and ...
0
votes
2answers
297 views
WCF: is there an attribute to make parameters in the OperationContract required?
I use [DataMember(IsRequired=true)] to make the DataContract properties required. There doesn't seem to be some IsRequired for the OperationContract parameters. How do I make them required and not ...
1
vote
2answers
235 views
WCF Data Contract with Hierarchical Data in Object Graph
I'm writing a WCF service to return information about a person from Active Directory. As well as returning the person's details I also want it to return their manager's username and full name.
I ...
0
votes
1answer
176 views
Referencing a specific repeater item instance
I've been looking all over StackOverflow and Google for an answer to this question, but I haven't been able to find anything.
I have a C# based ASP webpage that uses a repeater control to list ...
0
votes
2answers
87 views
Rename DataMember during Serialization
I am trying to serialise a DataContract.....
I would like to Rename the DataMember.
This is my DataContract
[DataContract(Name = "Sample")]
[Serializable]
public struct Sample
{
public ...
1
vote
1answer
181 views
Deserialization fail due to new WCF DataMember
I have a WCF webservice that my C++ client talks to using a proxy generated by svcutil + wsutil.
I added a new DataMember, and now i get:
Serialization failure occurred when reading an element with ...
0
votes
1answer
123 views
Restful web service hosted in IIS 7 not handling data contract members
I have a requirement to create a simple HTTP C# restful web service hosted in IIS 7 that can support a POST from a callout and the format of the POST data does not seem to be handled properly. The ...
1
vote
2answers
170 views
How can I make 2 c++ classes know about each other's data members?
My assignment is to make a class that acts like a standard library List. I am unable to get the iterator to work properly, because it must access the tail of the linked list when decrementing from the ...
0
votes
2answers
745 views
gridview.Datasource and gridview.Datamember which I should set first?
If I want to set both gridview.datasource and gridview.datamember, which one I should set first? Is there any standard order about this? Thank you!
0
votes
1answer
78 views
Serializing additional fields with the CollectionDataContactAttribute
I have a class which inherits from a collection, specifically List<> and I've listed the class below. The problem I'm encountering when I serialize the object to XML using DataContractSerializer ...
3
votes
2answers
2k views
Configure JSON.NET to ignore DataContract/DataMember attributes
We are running into a situation on an MVC3 project with both the Microsoft JSON serializers and JSON.NET.
Everybody knows DateTime's are basically broken in Microsoft's serializers, so we switched to ...
1
vote
3answers
243 views
Class instances share the value of a data member
I am writting a program to display a list multiple choice questions.I am having a problem with the value stored in the ChoiceString data member of my java class. Each instance of the class should have ...
1
vote
1answer
322 views
A class as data member of another class
I have two classes A and C, where I need to have object of C in class A as a private member. This is the basic structure I have and I have following issues:
1. How can I create the itsC object in ...
0
votes
2answers
119 views
How to send class equals implementation to client using a WCF Web Server
I'm developing an aplication in java (JSF) which communicates whith an WCF web server.
I developed the webserver using c#, and I'm havin trouble to send the equals implementation of an complex object ...
4
votes
6answers
129 views
Accessing different data members belonging to the same object from 2 different thread in C++
I have a few objects I need to perform actions on from different threads in c++. I known it is necessary to lock any variable that may be used by more than one thread at the same time, but what if ...
0
votes
1answer
267 views
Skip DataMember via DataContractSerializer
I have a class:
[DataContract]
public class Result
{
[DataMember] public String Log {get; set;}
[DataMember] public String Data {get; set;}
}
I send this class via WCF and it works fine. But I ...
3
votes
1answer
246 views
WCF - Custom name for a DataMember of a generic class
I have an existing WCF REST / JSON service that returns lists of different types of Data. I'd like to add to each response a single attribute which represents a revision number.
Say I have a 'Car' ...
0
votes
1answer
236 views
WCF regarding class property types
Ok so I am building my WCF service. I am having an issue with my proxy not generating code for classes that have types such as ListViewItem, or even the class objects that I already have defined.
Two ...
0
votes
1answer
350 views
Change DataMember property on WCF web service depending on input/output?
Scenario: An entity from data model is passed into a WCF Web Service with various information, saved into a database and then returned back with the object fully populated with additional information. ...
2
votes
2answers
652 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
136 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 ...
1
vote
3answers
456 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) {}
...
0
votes
1answer
418 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 ...
6
votes
3answers
3k 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 ...
0
votes
1answer
225 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
{
...
2
votes
1answer
276 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; }
...
0
votes
2answers
384 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 ...
10
votes
2answers
2k 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 ...
1
vote
2answers
1k 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
...
5
votes
2answers
690 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. ...
0
votes
1answer
1k 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.
...



