No announcements
Found 620753 threads
-
0 Votes
Understanding SERIALIZABLE
First run this as a setup: CREATE TABLE gusten (a int NOT NULL PRIMARY KEY, b varchar(230) NOT ...Answered | 8 Replies | 733 Views | Created by Enric Vives - Thursday, March 24, 2016 8:22 AM | Last reply by Erland Sommarskog - Thursday, March 24, 2016 11:27 AM -
0 Votes
[Serializable] + WCF
This will use the XmlSerializer which does not require the [Serializable] attribute You mate can;t be doing exactly the same thing - if he is trying to pass it from WCF to ...Answered | 1 Replies | 4279 Views | Created by Rakesh Parmar - Wednesday, July 15, 2009 9:58 AM | Last reply by Richard Blewett - Wednesday, July 15, 2009 10:51 AM -
0 Votes
Serializable client
I may not be correct, but I don't think the serializable attribute is necessary here.Answered | 3 Replies | 4138 Views | Created by Watty45 - Wednesday, April 13, 2011 8:22 AM | Last reply by Vitek Karas - MSFT - Friday, April 15, 2011 3:36 PM -
0 Votes
SERIALIZABLE isolation level question
NOLOCK is a hint you should use only if you understand the full implications of it - and this is very difficult even for an experienced developer.(*) At ...Answered | 1 Replies | 1787 Views | Created by Kushal_sql - Tuesday, February 12, 2013 3:43 PM | Last reply by Erland Sommarskog - Tuesday, February 12, 2013 4:06 PM -
0 Votes
Type in assembly is not marked as serializable
Have you make your class as Serializable?Answered | 2 Replies | 3567 Views | Created by jessica2030 - Thursday, September 22, 2016 4:37 PM | Last reply by DA924x - Friday, September 23, 2016 4:55 AM -
2 Votes
UserControl not marked as serializable
Suddenly visual studio complains that some control is not serializable, so you mark it as such, then it complains that whatever that inherits from isn't serializable...all the ...Answered | 9 Replies | 10438 Views | Created by px2195 - Sunday, February 19, 2012 4:18 PM | Last reply by - Monday, March 16, 2015 4:30 AM -
15 Votes
DataContract versus Serializable
[DataContract] and [Serializable] can be used together.Answered | 11 Replies | 63662 Views | Created by TrevorW - Saturday, January 20, 2007 11:49 PM | Last reply by VG10 - Tuesday, March 22, 2016 7:29 PM -
1 Votes
If a base class is marked as [Serializable] will the dervied class also be serializable?
You have to Write [Serializable] on the top of drived class as well.Answered | 3 Replies | 8710 Views | Created by BillyM2010 - Tuesday, July 10, 2012 7:25 PM | Last reply by Kapul Bhatnagar - Tuesday, July 10, 2012 9:09 PM -
0 Votes
Type in assembly is not marked as serializable
Or you could create a derivate of the type which is marked as Serializable like following.Answered | 2 Replies | 6206 Views | Created by jessica2030 - Thursday, September 22, 2016 4:35 PM | Last reply by Wendy Zang - Friday, September 23, 2016 7:31 AM -
1 Votes
How to serializate a ODBCCommand object?
Add its properties in some serializable collection and serialize that and vice versa Bimbim.inAnswered | 2 Replies | 2611 Views | Created by henryho08 - Wednesday, October 13, 2010 7:24 AM | Last reply by bimbim - Wednesday, October 13, 2010 11:16 AM -
0 Votes
non serializable class in biztalk
Steps to call a Non-Serializable .NET Helper Class inside an Expression Shape(The DLL that contains the class must be strongly signed and placed in the ...Answered | 3 Replies | 3607 Views | Created by Christiane0696 - Friday, September 19, 2014 3:22 AM | Last reply by Maheshkumar S Tiwari - Friday, September 19, 2014 4:40 AM -
1 Votes
How to know Is Serializable?
However, with regards to XmlSerialization, all types are potentially serializable however they could as easily not be.Answered | 5 Replies | 5937 Views | Created by Kennon2005 - Friday, July 14, 2006 12:34 AM | Last reply by Anthony D. Green [MSFT] - Saturday, July 15, 2006 7:48 PM -
0 Votes
Serializable Error
Hi I have two applications and I want to create .Net Remoting connection between them After executing the remote function, this exception occurs: "Type ...Answered | 1 Replies | 4076 Views | Created by javadi_84 - Tuesday, August 26, 2008 6:23 AM | Last reply by Hongmei Ge - Tuesday, August 26, 2008 9:59 PM -
0 Votes
Dynamic.ExpandoObjet s not marked as serializable
in orchestration private static void CreateDynamicObj(DataTable _objDT) { _objDynamic = new List<dynamic>(); foreach (var item ...Answered | 4 Replies | 2203 Views | Created by BTLearner2016 - Tuesday, April 5, 2016 6:04 PM | Last reply by Johns-305 - Tuesday, April 5, 2016 7:04 PM -
0 Votes
OracleConnection in System.data.Oracleclient is not marked as Serializable
So this will allow the OracleConnection object to be serializable?Answered | 2 Replies | 4856 Views | Created by pokenda - Monday, May 31, 2010 7:46 PM | Last reply by emmie_lewis - Thursday, May 26, 2011 5:42 PM -
0 Votes
Marking WF XAML serializable
inputParameters, string prefix, string workflowName) { string assemblyFullPath = GetAssemblyPath(workflowLocation, prefix, workflowName); ...Answered | 1 Replies | 2004 Views | Created by Ram Kinkar Pandey - Saturday, October 27, 2012 5:35 PM | Last reply by Tim Lovell-Smith - Monday, October 29, 2012 5:17 AM -
2 Votes
'System.Web.UI.WebControls.ListItem' in Assembly is not marked as serializable
Create your own class to contain the specific information that you need to serialize and mark that class with the Serializable attribute.Answered | 1 Replies | 3274 Views | Created by MarkandBhatt - Wednesday, January 30, 2013 3:38 PM | Last reply by Reed Kimble - Wednesday, January 30, 2013 4:11 PM -
0 Votes
Are Imageframe and SkeletonData serializable?
No, they are not marked as serializable.Answered | 1 Replies | 2834 Views | Created by escorciav - Tuesday, August 23, 2011 8:32 PM | Last reply by Eddy Escardo-Raffo [MSFT] - Wednesday, August 24, 2011 11:09 PM -
0 Votes
see stored procedure being blocked and the blocked_isolation_level is Serializable
hi Allen, That is good to know...I am aware of the isolation levels, the question is, when READ COMMITTED is the default, why i seeing SERIALIZABLE ??Answered | 5 Replies | 1304 Views | Created by Ranga1 - Friday, October 11, 2013 7:24 PM | Last reply by Ranga1 - Monday, October 21, 2013 1:28 PM -
0 Votes
DialogDebuggerVisualizer naging about serializable.
If we want to create a Debugger Visualizer for some type, we must use [Serializable] attribute on this particular type.Answered | 8 Replies | 8161 Views | Created by SvenL - Tuesday, May 4, 2010 5:38 AM | Last reply by Arvind Verma - Friday, May 18, 2012 1:09 PM - Items 1 to 20 of 620753 Next ›
No announcements