Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

22
votes
2answers
426 views

C# compiler bug? Object initializer syntax used for write-only property in Expression makes csc crash

You may consider this a bug report, however I'm curious if I am terribly wrong here, or if there is an explanation from Eric or someone else at Microsoft. Update This is now posted as a bug on ...
3
votes
3answers
553 views

How can I create a custom *write-only* dependency-property?

I need to know what the procedure is for making a write-only dependency-property. I can see that the DependencyProperty class does not have a special "Register" method for write-only properties, but I ...
2
votes
2answers
128 views

CouchDB write-only database

I'm trying to setup a CouchDB database that could be publicly writable and only readable by the "admin" role. How can I do this. Is there a similar validate_doc_update function for accessing a ...
1
vote
1answer
52 views

How do I write a pseudo-write-only dependency property?

Ok, so this is just an idea I have floating in my head regarding a sort of 'pseudo-write--only' dependency property. I say sort of because I actually don't even want the value to be stored, but ...
1
vote
5answers
259 views

Write-Only Reference in C++?

Is there a way to code a write-only reference to an object? For example, suppose there was a mutex class: template <class T> class mutex { protected: T _data; public: mutex(); void ...
0
votes
3answers
47 views

When designing an OO language, should I avoid write-only properties?

I am designing an object-oriented programming language for the purpose of learning. The language has properties, like this: Class Fruit: Property ReadWrite Float weight Property WriteOnly Integer ...