Google Code Exporter

Results 11117 issues of Google Code Exporter

``` It would be nice to be able to pull out the PropertyInfo / FieldInfo array results created when the accessor is created. In my use case, I need to...

Priority-Medium
Type-Defect
auto-migrated

``` I have a clone in which I've added caching of property and field names. Not sure if this is of any interest, but it's here if you want: http://code.google.com/r/kearonsean-fast-member/source/detail?r=6488edf35577a727...

Priority-Medium
Type-Defect
auto-migrated

``` If you change the code from il.Emit(OpCodes.Ldstr, "name"); il.Emit(OpCodes.Newobj, typeof(ArgumentOutOfRangeException).GetConstructor(new Type[] { typeof(string) })); il.Emit(OpCodes.Throw); To this: il.Emit(OpCodes.Ldarg, 2); il.Emit(OpCodes.Newobj, typeof(ArgumentOutOfRangeException).GetConstructor(new Type[] { typeof(string) })); il.Emit(OpCodes.Throw); It'll shown you...

Priority-Medium
Type-Defect
auto-migrated

``` What steps will reproduce the problem? 1. Set starting project of solution to FastMember_Net35 2. Do a build / compile 3. It will complain about System.Dynamic not found 2...

Priority-Medium
Type-Defect
auto-migrated

``` While trying the set or get a property from a COM object using the ObjectAccessor, it always throw an ArgumentOutOfRangeException. ``` Original issue reported on code.google.com by `[email protected]` on...

Priority-Medium
Type-Defect
auto-migrated

``` The method TypeAccessor.WriteSetter throws an ArgumentNullException, if the target type has a property with a non-public setter. (Line 141: http://code.google.com/p/fast-member/source/browse/FastMember/TypeAccessor.cs#14 1) Example: class TestTarget { public int Id {...

Priority-Medium
Type-Defect
auto-migrated

``` What steps will reproduce the problem? 1.Go to the application Log's screen 2.Click on log.out 3. What is the expected result? See the log.out file What happens instead? Exception(Stack...

Type-Bug
auto-migrated

``` Please describe the feature you would like to see added. PSI Probe currently has 4 roles: probeuser, poweruser, poweruserplus, and manager (a.k.a. manager-gui, see issue 183). The permissions for...

auto-migrated
Type-Feature

``` What steps will reproduce the problem? 1. See group post: https://groups.google.com/forum/?fromgroups=#!topic/psi-probe-discuss/8QeaGj6e0K g 2. View logs tab. What is the expected result? Logs tab will display a list of logs....

Type-Bug
auto-migrated
Component-Logging

``` Which existing feature would you like to see enhanced? Executing SQL queries against a datasource. Please describe the enhancement in detail. The current implementation uses the java.sql package. Once...

Type-Enhancement
auto-migrated
Maintainability