mono.git
13 years agoLog profiler: osx/win32 portability fixes.
Paolo Molaro [Tue, 9 Nov 2010 08:50:44 +0000 (09:50 +0100)]
Log profiler: osx/win32 portability fixes.

13 years agoAdd a workaround for a failed assert in the amd64 EH code which happens when running...
Zoltan Varga [Tue, 9 Nov 2010 08:27:25 +0000 (09:27 +0100)]
Add a workaround for a failed assert in the amd64 EH code which happens when running under the soft debugger.

13 years agoFix the DISABLE_REFLECTION_EMIT build. Fixes #652188.
Zoltan Varga [Tue, 9 Nov 2010 07:52:55 +0000 (08:52 +0100)]
Fix the DISABLE_REFLECTION_EMIT build. Fixes #652188.

13 years agoTidy up the configure output a bit.
Zoltan Varga [Tue, 9 Nov 2010 07:52:26 +0000 (08:52 +0100)]
Tidy up the configure output a bit.

13 years agoFix a warning.
Zoltan Varga [Tue, 9 Nov 2010 07:51:46 +0000 (08:51 +0100)]
Fix a warning.

13 years agoFix generic XamlTypeName output and GetType() to get some xml reader case working.
Atsushi Eno [Tue, 9 Nov 2010 06:41:01 +0000 (15:41 +0900)]
Fix generic XamlTypeName output and GetType() to get some xml reader case working.

13 years ago[asp.net] Don't instantiate the hash algorithm used to encrypt resource URLs on each...
Marek Habersack [Tue, 9 Nov 2010 01:15:11 +0000 (02:15 +0100)]
[asp.net] Don't instantiate the hash algorithm used to encrypt resource URLs on each request if it can be reused.

The algorithm instance is kept in a thread-local variable.

13 years ago[asp.net] Optimize buffer reuse in HttpWriter.
Marek Habersack [Tue, 9 Nov 2010 00:40:59 +0000 (01:40 +0100)]
[asp.net] Optimize buffer reuse in HttpWriter.

When HttpWriter requests a byte buffer to send data to the output stream it now uses
a thread-local static buffer pre-allocated to at most 128KB (all threads' buffers should
not exceed 4MB). If a buffer exceeding the static buffer size is requested, a transient
one is allocated.

13 years ago[asp.net] A micro-optimization to not call String.Format too much in a loop.
Marek Habersack [Tue, 9 Nov 2010 00:39:49 +0000 (01:39 +0100)]
[asp.net] A micro-optimization to not call String.Format too much in a loop.

13 years agoLog profiler: disable zlib support on windows.
Paolo Molaro [Mon, 8 Nov 2010 20:01:12 +0000 (21:01 +0100)]
Log profiler: disable zlib support on windows.

Someone on windows needs to look at this: it defines HAVE_ZLIB but
doesn't actually have it (missing zlib.h or not linking to -lz).

13 years agoRevert "Avoid building the log profiler on windows, it has no libz."
Zoltan Varga [Mon, 8 Nov 2010 20:02:08 +0000 (21:02 +0100)]
Revert "Avoid building the log profiler on windows, it has no libz."

This reverts commit 3d81ea258fb94930af86c1fd089c712ca8c1d096.

13 years agoAvoid building the log profiler on windows, it has no libz.
Zoltan Varga [Mon, 8 Nov 2010 20:00:33 +0000 (21:00 +0100)]
Avoid building the log profiler on windows, it has no libz.

13 years agoAdd regression test for ##595044
Rodrigo Kumpera [Mon, 8 Nov 2010 19:40:10 +0000 (17:40 -0200)]
Add regression test for ##595044

13 years agoIL can't reference literal fields.
Rodrigo Kumpera [Mon, 8 Nov 2010 19:34:38 +0000 (17:34 -0200)]
IL can't reference literal fields.

* verify.c (verifier_load_field): Fail if the
field is literal.

Fixes #595044

13 years agoAPI compatibility work
Marek Safar [Mon, 8 Nov 2010 19:28:37 +0000 (19:28 +0000)]
API compatibility work

13 years agoEmit correctly EndInvoke parameters attributes and names
Marek Safar [Mon, 8 Nov 2010 19:27:43 +0000 (19:27 +0000)]
Emit correctly EndInvoke parameters attributes and names

13 years agoFixed ambiguity for overload resolution between params and optional parameter of...
Marek Safar [Mon, 8 Nov 2010 16:36:53 +0000 (16:36 +0000)]
Fixed ambiguity for overload resolution between params and optional parameter of same type

13 years agoClean up event expression assigning error reporting
Marek Safar [Mon, 8 Nov 2010 10:06:35 +0000 (10:06 +0000)]
Clean up event expression assigning error reporting

13 years agoNew test
Marek Safar [Mon, 8 Nov 2010 10:04:02 +0000 (10:04 +0000)]
New test

13 years ago[651547] Check definitely assigned struct this access correctly.
Marek Safar [Mon, 8 Nov 2010 09:32:10 +0000 (09:32 +0000)]
[651547] Check definitely assigned struct this access correctly.

13 years agoRemoved platform attributes
Marek Safar [Mon, 8 Nov 2010 09:28:23 +0000 (09:28 +0000)]
Removed platform attributes

13 years agoReport error duplicate only when expected error has been found
Marek Safar [Sat, 6 Nov 2010 18:30:32 +0000 (18:30 +0000)]
Report error duplicate only when expected error has been found

13 years agoAdd missing default ctor call
Marek Safar [Sat, 6 Nov 2010 18:28:58 +0000 (18:28 +0000)]
Add missing default ctor call

13 years agoFix a typo in process_breakpoint_inner which doesn't break our tests for some reason.
Zoltan Varga [Mon, 8 Nov 2010 19:22:30 +0000 (20:22 +0100)]
Fix a typo in process_breakpoint_inner which doesn't break our tests for some reason.

13 years agoLog profiler: better object tracking.
Paolo Molaro [Mon, 8 Nov 2010 19:03:38 +0000 (20:03 +0100)]
Log profiler: better object tracking.

* decode.c: the --track option can now take more than one object address to track.
Added the --find option to automatically track objects of a given size and/or
type name. When backtrace and heapshot information is present, we can now, for
example, find when and where all the byte[] arrays bigger than a certain size
have been created and which other heap objects reference them.

13 years agoLog profiler: more timer compatibility fixes.
Paolo Molaro [Mon, 8 Nov 2010 16:33:26 +0000 (17:33 +0100)]
Log profiler: more timer compatibility fixes.

13 years agoLog profiler: track and display contended monitor wait times.
Paolo Molaro [Mon, 8 Nov 2010 16:06:45 +0000 (17:06 +0100)]
Log profiler: track and display contended monitor wait times.

13 years agoLog profiler: fill and display a few more data fields in the header.
Paolo Molaro [Mon, 8 Nov 2010 15:30:56 +0000 (16:30 +0100)]
Log profiler: fill and display a few more data fields in the header.

13 years agoMore log profiler doc clarifications.
Paolo Molaro [Mon, 8 Nov 2010 14:16:03 +0000 (15:16 +0100)]
More log profiler doc clarifications.

13 years agoDon't allow zero local var tokens.
Rodrigo Kumpera [Mon, 8 Nov 2010 15:30:20 +0000 (13:30 -0200)]
Don't allow zero local var tokens.

* metadata-verify.c (is_valid_method_header): The local
token cannot have a zero index.

* metadata.c (mono_metadata_parse_mh_full): Fail if locals
token index is zero.

Fixes #651682

13 years agoTransition ves_icall_get_frame_info () to use find_jit_info_ext (), remove the manage...
Zoltan Varga [Mon, 8 Nov 2010 15:00:09 +0000 (16:00 +0100)]
Transition ves_icall_get_frame_info () to use find_jit_info_ext (), remove the managed->native wrapper hacks.

13 years ago[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.
Marek Habersack [Mon, 8 Nov 2010 14:41:18 +0000 (15:41 +0100)]
[asp.net] Optimize memory usage a bit. String hashes are cached in thread-local storage.

13 years agoWork with classes been loaded.
Rodrigo Kumpera [Fri, 5 Nov 2010 20:20:29 +0000 (18:20 -0200)]
Work with classes been loaded.

* metadata.c (do_mono_metadata_parse_type): It's possible
that we're decoding a reference to a class that it's currently
been loaded so byval_arg.type will be zero.

13 years agoFix FieldInfo::GetFieldFromHandle signature.
Rodrigo Kumpera [Fri, 5 Nov 2010 20:19:54 +0000 (18:19 -0200)]
Fix FieldInfo::GetFieldFromHandle signature.

13 years agoFixed make dist for log profiler.
Paolo Molaro [Mon, 8 Nov 2010 13:44:51 +0000 (14:44 +0100)]
Fixed make dist for log profiler.

13 years agoEmit object heap sizes for allocations and heap-shot in the log profiler.
Paolo Molaro [Mon, 8 Nov 2010 11:40:55 +0000 (12:40 +0100)]
Emit object heap sizes for allocations and heap-shot in the log profiler.

13 years agoForgot to add a test xml.
Atsushi Eno [Mon, 8 Nov 2010 11:37:37 +0000 (20:37 +0900)]
Forgot to add a test xml.

13 years agoFix positional parameter argument output location check.
Atsushi Eno [Mon, 8 Nov 2010 11:35:12 +0000 (20:35 +0900)]
Fix positional parameter argument output location check.

MarkupExtension with multiple arguments are prohibited at top level.

13 years agoAdded a check for a corner case of a stack walk during thread startup.
Paolo Molaro [Mon, 8 Nov 2010 11:29:13 +0000 (12:29 +0100)]
Added a check for a corner case of a stack walk during thread startup.

* mini-exceptions.c: sometimes an allocation happens at thread startup
where the data structures are not yet setup to allow stack walking.
If we request a stack trace there, we'd crash. To reproduce the crash
without this change, just run xsp with the log profiler with the nocalls
option.

13 years agoFix attribute state management to handle x:Key inside MarkupExtension correctly.
Atsushi Eno [Mon, 8 Nov 2010 11:22:09 +0000 (20:22 +0900)]
Fix attribute state management to handle x:Key inside MarkupExtension correctly.

Namely TypeExtension (it got working).

13 years agoMore log profiler portability and warning fixes.
Paolo Molaro [Mon, 8 Nov 2010 09:52:20 +0000 (10:52 +0100)]
More log profiler portability and warning fixes.

13 years agoIntegrated the log profiler in the build, warning and portability fixes.
Paolo Molaro [Mon, 8 Nov 2010 09:38:41 +0000 (10:38 +0100)]
Integrated the log profiler in the build, warning and portability fixes.

13 years agoLog profiler: added copyright header and comments.
Paolo Molaro [Sun, 7 Nov 2010 18:19:29 +0000 (19:19 +0100)]
Log profiler: added copyright header and comments.

13 years agoPorted log profiler to windows (untested) and OSX time factor fix.
Paolo Molaro [Sun, 7 Nov 2010 18:07:08 +0000 (19:07 +0100)]
Ported log profiler to windows (untested) and OSX time factor fix.

13 years agoDocumented the current version for the log profiler data format.
Paolo Molaro [Sun, 7 Nov 2010 17:05:08 +0000 (18:05 +0100)]
Documented the current version for the log profiler data format.

13 years agoMake frames of type FRAME_TYPE_MANAGED_TO_NATIVE act as a marker, i.e. the caller...
Zoltan Varga [Mon, 8 Nov 2010 10:19:39 +0000 (11:19 +0100)]
Make frames of type FRAME_TYPE_MANAGED_TO_NATIVE act as a marker, i.e. the caller should ignore them and unwind once more to get the last managed frame and its associated context.

13 years agoFix PositionalParameter serialization in collections.
Atsushi Eno [Mon, 8 Nov 2010 08:46:38 +0000 (17:46 +0900)]
Fix PositionalParameter serialization in collections.

Dictionary still needs another fix.

13 years agoForgot to remove old internal stuff.
Atsushi Eno [Mon, 8 Nov 2010 07:51:32 +0000 (16:51 +0900)]
Forgot to remove old internal stuff.

13 years agoFixed member order in Dictionary key and item in XamlObjectReader.
Atsushi Eno [Mon, 8 Nov 2010 07:41:43 +0000 (16:41 +0900)]
Fixed member order in Dictionary key and item in XamlObjectReader.

This requires messy and complicated change and sort of illogical member ordering!

13 years agoFix llvm build with LLVM 2.8.
Zoltan Varga [Mon, 8 Nov 2010 07:04:22 +0000 (08:04 +0100)]
Fix llvm build with LLVM 2.8.

13 years agoMerge branch 'marksweep-evacuate'
Mark Probst [Sun, 7 Nov 2010 01:46:11 +0000 (02:46 +0100)]
Merge branch 'marksweep-evacuate'

13 years ago[sgen] Don't compile evacuation for parallel mark.
Mark Probst [Sat, 6 Nov 2010 14:29:31 +0000 (15:29 +0100)]
[sgen] Don't compile evacuation for parallel mark.

Parallel Mark doesn't yet support evacuation, so don't compile
it in.

13 years ago[sgen] User-settable evacuation threshold.
Mark Probst [Sat, 30 Oct 2010 14:22:30 +0000 (16:22 +0200)]
[sgen] User-settable evacuation threshold.

A MONO_GC_PARAMS option for setting the evacuation
threshold.

13 years ago[sgen] Mark&Sweep evacuation.
Mark Probst [Sat, 30 Oct 2010 12:40:05 +0000 (14:40 +0200)]
[sgen] Mark&Sweep evacuation.

When the occupancy for some block size falls below a certain
threshold the objects in that block size will be evacuated in
the next major collection, resulting in optimal occupancy.

13 years ago[sgen] Function for querying current collection generation.
Mark Probst [Thu, 28 Oct 2010 22:23:08 +0000 (00:23 +0200)]
[sgen] Function for querying current collection generation.

This lets the major collector query whether the current collection
is a minor or a major one.

13 years ago[sgen] Dump Mark&Sweep heap occupancy.
Mark Probst [Mon, 18 Oct 2010 12:30:39 +0000 (14:30 +0200)]
[sgen] Dump Mark&Sweep heap occupancy.

For each block size dump the occupancy to the heap-dump
file.

13 years ago[sgen] Flush the binary protocol file when protocol is flushed.
Mark Probst [Wed, 20 Oct 2010 12:18:31 +0000 (14:18 +0200)]
[sgen] Flush the binary protocol file when protocol is flushed.

13 years agoRemove the s390 hacks from the EH code by decreasing the ip stored into ctx->ip by...
Zoltan Varga [Sat, 6 Nov 2010 18:27:03 +0000 (19:27 +0100)]
Remove the s390 hacks from the EH code by decreasing the ip stored into ctx->ip by 1, as it is done on all other platforms.

13 years agoAdd another assert to the amd64 EH code.
Zoltan Varga [Sat, 6 Nov 2010 15:00:25 +0000 (16:00 +0100)]
Add another assert to the amd64 EH code.

13 years agoAdd a few exceptions to the EH code to determine whenever they hold on all platforms...
Zoltan Varga [Sat, 6 Nov 2010 14:57:49 +0000 (15:57 +0100)]
Add a few exceptions to the EH code to determine whenever they hold on all platforms in all cases.

13 years agoReorganize mono_handle_exception_internal ():
Zoltan Varga [Sat, 6 Nov 2010 14:16:25 +0000 (15:16 +0100)]
Reorganize mono_handle_exception_internal ():
* Use mono_find_jit_info_ext ()
* Avoid putting the main body of code inside two if's.

13 years agoRework an if () inside an #ifdef since it confuses emacs.
Zoltan Varga [Sat, 6 Nov 2010 09:14:14 +0000 (10:14 +0100)]
Rework an if () inside an #ifdef since it confuses emacs.

13 years agoFix encode/decode_sleb128 () on 64 bit systems.
Zoltan Varga [Sat, 6 Nov 2010 07:26:14 +0000 (08:26 +0100)]
Fix encode/decode_sleb128 () on 64 bit systems.

13 years agoAdd *.xml to ignore list
Marek Safar [Fri, 5 Nov 2010 23:03:29 +0000 (23:03 +0000)]
Add *.xml to ignore list

13 years agoMerge branch 'marek'
Marek Safar [Fri, 5 Nov 2010 22:56:38 +0000 (22:56 +0000)]
Merge branch 'marek'

13 years agoImplement the new logging profiler on OSX
Geoff Norton [Fri, 5 Nov 2010 21:23:29 +0000 (17:23 -0400)]
Implement the new logging profiler on OSX

13 years agoDictionary key might be inappropriately serialized into an attribute.
Atsushi Eno [Fri, 5 Nov 2010 19:14:37 +0000 (04:14 +0900)]
Dictionary key might be inappropriately serialized into an attribute.

13 years agoAdd CookieParser to Moonlight's System.Net assembly
Sebastien Pouliot [Fri, 5 Nov 2010 18:38:12 +0000 (14:38 -0400)]
Add CookieParser to Moonlight's System.Net assembly

* moonlight_raw_System.Net.dll.sources: Add new CookieParser to the
build

13 years agoRefactoring to ease fix cookie support in moonlight client stack
Sebastien Pouliot [Fri, 5 Nov 2010 18:35:30 +0000 (14:35 -0400)]
Refactoring to ease fix cookie support in moonlight client stack

* System.Net/CookieParser.cs: Add more common/shared code
* System.Net/HttpWebResponse.cs: Move out CookieParser class and some
utility methods so they can be shared with Moonlight http client stack

* System.dll.sources:
* mobile_System.dll.sources:
* moonlight_shared_System.dll.sources:
Add new CookieParser.cs to the build

13 years agoAdd support for ContentPropertyAttribute (e.g. Reference) in XamlXmlWriter.
Atsushi Eno [Fri, 5 Nov 2010 18:32:08 +0000 (03:32 +0900)]
Add support for ContentPropertyAttribute (e.g. Reference) in XamlXmlWriter.

13 years agoImplement member pending at StartMember when it should be indeterminant. Lots of...
Atsushi Eno [Fri, 5 Nov 2010 18:18:15 +0000 (03:18 +0900)]
Implement member pending at StartMember when it should be indeterminant. Lots of code cleanup.

13 years agoEnlarge try-finally blocks preceeded by a Monitor.Enter () call to include the call...
Zoltan Varga [Fri, 5 Nov 2010 18:10:07 +0000 (19:10 +0100)]
Enlarge try-finally blocks preceeded by a Monitor.Enter () call to include the call itself, to avoid races inherent in such code. Fixes #651546.

13 years agoAdd new XamlXmlWriter implementation. Marked some as NotWorking while removed a lot.
Atsushi Eno [Fri, 5 Nov 2010 17:11:17 +0000 (02:11 +0900)]
Add new XamlXmlWriter implementation. Marked some as NotWorking while removed a lot.

13 years agoMarkupExtension type xml names are omitted their "Extension" parts.
Atsushi Eno [Fri, 5 Nov 2010 17:10:18 +0000 (02:10 +0900)]
MarkupExtension type xml names are omitted their "Extension" parts.

13 years agoindent text xml.
Atsushi Eno [Fri, 5 Nov 2010 17:09:24 +0000 (02:09 +0900)]
indent text xml.

13 years agoA few refactoring for new XamlXmlWriter. Add tests for [ContentProperty].
U-monkeytimeline2\atsushi [Fri, 5 Nov 2010 15:50:51 +0000 (00:50 +0900)]
A few refactoring for new XamlXmlWriter. Add tests for [ContentProperty].

13 years agoFirst cut of the new log profiler and report generator.
Paolo Molaro [Fri, 5 Nov 2010 15:35:11 +0000 (16:35 +0100)]
First cut of the new log profiler and report generator.

This is the first preview version of the new log profiler.
It is not included in the build yet because it needs some
portability cleanups, see the top of proflog.c for compilation
instructions.
It currently works on Linux x86 (64 bit support may work but it
is untested).
The documentation is included in the log-profiler.txt file.

13 years agoFix DISABLE_REFLECTION_EMIT build.
Zoltan Varga [Fri, 5 Nov 2010 15:30:04 +0000 (16:30 +0100)]
Fix DISABLE_REFLECTION_EMIT build.

13 years agoBetter 843 error message
Marek Safar [Fri, 5 Nov 2010 15:01:38 +0000 (15:01 +0000)]
Better 843 error message

13 years agoMove 2.0 Monitor.Enter back out of the try block
Marek Safar [Fri, 5 Nov 2010 15:00:29 +0000 (15:00 +0000)]
Move 2.0 Monitor.Enter back out of the try block

13 years agoOnly when importing nested types definition base type cannot be setup
Marek Safar [Fri, 5 Nov 2010 11:11:41 +0000 (11:11 +0000)]
Only when importing nested types definition base type cannot be setup

13 years agoGet rid of gregs_from_ucontext (), use the normal UCONTEXT_REG_... macros instead.
Zoltan Varga [Fri, 5 Nov 2010 11:20:59 +0000 (12:20 +0100)]
Get rid of gregs_from_ucontext (), use the normal UCONTEXT_REG_... macros instead.

13 years ago[asp.net,routing] Fix for bug #651593. Don't match all-literal routes for URLs with...
Marek Habersack [Fri, 5 Nov 2010 10:35:28 +0000 (11:35 +0100)]
[asp.net,routing] Fix for bug #651593. Don't match all-literal routes for URLs with excessive segments.

13 years agoDon't build obsolete Compat.ICSharpCode.SharpZipLib in 4.0 profile to avoid another...
Marek Safar [Fri, 5 Nov 2010 09:57:41 +0000 (09:57 +0000)]
Don't build obsolete Compat.ICSharpCode.SharpZipLib in 4.0 profile to avoid another version conflict

13 years agoUnify stack walking functions:
Zoltan Varga [Fri, 5 Nov 2010 08:55:21 +0000 (09:55 +0100)]
Unify stack walking functions:
  * Rename mono_jit_walk_stack_from_ctx_in_thread to mono_walk_stack.
  * Make the old stack walker use this one.
  * Remove the old mono_walk_stack functions.

13 years agoFix a bug introduced by the previous change to mono_jit_walk_stack_from_ctx_in_thread ().
Zoltan Varga [Fri, 5 Nov 2010 06:45:33 +0000 (07:45 +0100)]
Fix a bug introduced by the previous change to mono_jit_walk_stack_from_ctx_in_thread ().

13 years agoFix crashes in the debugger stack walk code if a gshared method calls another using...
Zoltan Varga [Fri, 5 Nov 2010 05:53:11 +0000 (06:53 +0100)]
Fix crashes in the debugger stack walk code if a gshared method calls another using a managed-to-native translation.

13 years agoFix more gshared problems in the soft debugger.
Zoltan Varga [Fri, 5 Nov 2010 05:37:28 +0000 (06:37 +0100)]
Fix more gshared problems in the soft debugger.

13 years agoFix gshared support in the soft debugger. Fixes #651251.
Zoltan Varga [Fri, 5 Nov 2010 04:20:19 +0000 (05:20 +0100)]
Fix gshared support in the soft debugger. Fixes #651251.

13 years agoAdd our new System.ServiceModel.Channel test files to the build.
Carlos Alberto Cortez [Thu, 4 Nov 2010 13:14:31 +0000 (14:14 +0100)]
Add our new System.ServiceModel.Channel test files to the build.

* System.ServiceModel_test.dll.sources: Add
MsmqTransportSecurityTest.cs,
CustomPolicyConversionContext.cs,
ConnectionOrientedTransportBindingElementTest.cs,
and MsmqBindingElementBaseTest.cs to our test build.

13 years agoAdd IPolicyExportExtension tests for classes in System.ServiceModel.Channels.
Carlos Alberto Cortez [Thu, 4 Nov 2010 13:10:50 +0000 (14:10 +0100)]
Add IPolicyExportExtension tests for classes in System.ServiceModel.Channels.

* CustomPolicyConversionContext.cs: New file, containing a dummy
child of PolicyConversionContext.
* MsmqBindingElementBaseTest.cs: New test file.
* ConnectionOrientedTransportBindingElementTest.cs: New test file.
* HttpTransportBindingElementTest.cs: Add IPolicyExportExtension
tests.

13 years agoImplement IPoliciExportExtension support for MsmqBindingElementBase.
Carlos Alberto Cortez [Thu, 4 Nov 2010 13:09:21 +0000 (14:09 +0100)]
Implement IPoliciExportExtension support for MsmqBindingElementBase.

* MsmqBindingElementBase.cs: Implement ExportPolicy.

13 years agoImplement IPolicyExportExtension support for ConnectionOrientedTransportBindingElement.
Carlos Alberto Cortez [Thu, 4 Nov 2010 13:08:15 +0000 (14:08 +0100)]
Implement IPolicyExportExtension support for ConnectionOrientedTransportBindingElement.

* ConnectionOrientedTransportBindingElement.cs: Implement ExportPolicy.

13 years agoImplement IPolicyExportExtension support for HttpTransportBindingElement.
Carlos Alberto Cortez [Thu, 4 Nov 2010 13:06:33 +0000 (14:06 +0100)]
Implement IPolicyExportExtension support for HttpTransportBindingElement.

* HttpTransportBindingElement.cs: Implement ExportPolicy.

13 years agoProperly set the default values for MsmqTransportSecurity.
Carlos Alberto Cortez [Thu, 4 Nov 2010 12:36:22 +0000 (13:36 +0100)]
Properly set the default values for MsmqTransportSecurity.

* MsmqTransportSecurity.cs: Use the proper default values for
this class.

13 years agoAdd MsmqTransportSecurityTest.cs to our test suite.
Carlos Alberto Cortez [Thu, 4 Nov 2010 12:29:09 +0000 (13:29 +0100)]
Add MsmqTransportSecurityTest.cs to our test suite.

* MsmqTransportSecurityTest.cs: New test file.

13 years ago[asp.net] HttpContext.TimeoutReached - check whether timer != null before using it.
Marek Habersack [Thu, 4 Nov 2010 23:35:56 +0000 (00:35 +0100)]
[asp.net] HttpContext.TimeoutReached - check whether timer != null before using it.

13 years ago[asp.net] Expire items must always check if the dequeued item is not null before...
Marek Habersack [Thu, 4 Nov 2010 23:30:10 +0000 (00:30 +0100)]
[asp.net] Expire items must always check if the dequeued item is not null before using it.

13 years agoMove assignation earlier to ensure value is available for parameter checks
Sebastien Pouliot [Thu, 4 Nov 2010 19:10:23 +0000 (15:10 -0400)]
Move assignation earlier to ensure value is available for parameter checks

* FileStream.cs: Move anonymous assignation earlier so the value is
available when validation are made (and calls other methods)

13 years ago[mdoc-update] Explicitly order //Type children.
Jonathan Pryor [Thu, 4 Nov 2010 19:05:54 +0000 (15:05 -0400)]
[mdoc-update] Explicitly order //Type children.

Unlike 03c231a585c8ff46f93084210fa240e8f6e4f65b, this isn't needed for
'mdoc-validate', it's instead for "niceness" reasons.

For example, as with f6e4f65b, if we update docs generated by an older
version mdoc, we'll add a <TypeSignature/> for ILAsm.  However, the
added <TypeSignature/> is at the end of the file, nowhere near the
existing <TypeSignature/>s, which is...odd.  Not bad, per-se, but
"undesirable".

Thus, we order things for consistency during/after updates.