Tagged Questions
2
votes
1answer
67 views
Is it possible to determine the type responsible for constructing an attribute in c#
Attribute constructors are called after calling GetCustomAttributes() on a type that is decorated with attributes. Is it possible to determine the calling type from within the constructor. I would ...
0
votes
1answer
47 views
What serializer to use?
I was using DataContractSerializer and so far it provided everything I need.
Now I need two more features and I already know that they are not possible with DataContractSerializer.
I need to be able ...
0
votes
2answers
76 views
.NET Attributes on Property
If I have:
[SomeAttr]
public Int32 SomeProperty
{
get; set;
}
Is it possible for SomeAttr to tell what property it's tacked onto? Is it atleast possible to tell what Type the property is?
1
vote
2answers
73 views
How to get `Type` of subclass from base class
I have an abstract base class where I would like to implement a method that would retrieve an attribute property of the inheriting class. Something like this...
public abstract class MongoEntityBase ...
2
votes
2answers
62 views
Getting the type of a MemberInfo with reflection
I'm using reflection to load a treeview with the class structure of a project. Each of the members in a class have a custom attribute assigned to them.
I don't have a problem getting the attributes ...
1
vote
1answer
73 views
Get Description of attribute based on value of another attribute
Please consider this Code:
[ShowFieldByRole(User1 = false, User2 = false, User3 = true)]
[FieldName(Name = "Desciption1")]
public string G_Sum{set; get;}
[ShowFieldByRole(User1 = false, User2 = ...
0
votes
1answer
47 views
Iterating through fields with specific attribute
I'm pretty new to reflection in C#. I want to create a specific attribute that I can use with my fields, so I can go through them all and check that they are initialized properly, instead of writing ...
1
vote
1answer
30 views
How do I get all class properties that accomplish a requisit established in its attribute value?
To make it clear, little example:
public class Book
{
[MyAttrib(isListed = true)]
public string Name;
[MyAttrib(isListed = false)]
public DateTime ReleaseDate;
...
0
votes
4answers
64 views
Is it possble to get the properties and associated attributes of an object?
Is it possible to get the properties and their associated attributes as a collection or property set?
The properties of the object I'm looking at have attributes for use in JSON.NET, and I'd like to ...
1
vote
1answer
65 views
How to get real value from the ParameterInfo[] in Reflection
Actually I have few question to be easier to understand what I'm asking about I have to show my code first.
public static void Main(string[] args)
{
CustomClass customClass = new CustomClass();
...
1
vote
2answers
60 views
Is Class SubClass or Object
Note: I'm asking about subclasses, not derived classes.
Basically, what I need to do is check properties of an object and look for those that have a specific attribute set.
The problem I have is ...
5
votes
1answer
100 views
Get string representing the expression used as function argument in C#
I'm developing for Unity3D using C#, and decided it would be useful to have an assert function. (In Unity3D, System.Diagnostics.Debug.Assert exists, but does nothing.)
As a developer that works ...
0
votes
1answer
59 views
Is there a benefit of using IsDefined over GetCustomAttributes
Consider the case where an assembly contains one or more types attributed with a custom attribute MyAttribute and you need to get a list of these types. Is there any benefit of using IsDefined vs. ...
0
votes
2answers
20 views
How do I get at the metadata of attributed parameters?
How do I get at the attribute of the parameter in the following code?
public void SomeMethod([SomeAttribute] string s)
{
var someAttribute = ?
}
And I realize the attribute isn't generally for ...
1
vote
1answer
61 views
How to check whether a method has certain attribute without being sensitive about DLL version?
I have a custom test-case runner that uses NUnit attributes. I load the test DLL using reflection and check whether a method contains the [Test] attribute like this:
...
5
votes
2answers
82 views
Attribute using method name
I'm thinking you can't but is there a way to reference a method as a parameter on an attribute? I.e. something like below? I can fall back to use strings, but prefer to use compiler time to verify the ...
0
votes
0answers
80 views
Finding custom attributes in assembly wierdness
Why does the following work to find classes that are using my custom attribute but,
Assembly [] assemblies = AppDomain.CurrentDomain.GetAssemblies();
foreach(Assembly a in assemblies)
{
...
0
votes
3answers
115 views
Get collection of class instance with property combinations
I'm stuck with the following problem.
Consider the following simple attribute.
[AttributeUsage(AttributeTargets.Property)]
public class CombinationsAttribute : Attribute
{
public object[] ...
0
votes
0answers
31 views
Why do MVC EditorExtensions not recognice attributes added with TypeDescriptor.AddAttributes?
I need to dynammicaly add Attributes to a ViewModel field because I'm working on a CMS which uses custom objects which are defined in the Website dll for a specific client. Each client can have ...
0
votes
2answers
296 views
Serialization/Deserialization and non-default constructors
Consider this class:
[Persistable]
public sealed class FileMoveTask : TaskBase
{
[PersistMember]
public string SourceFilePath { get; private set;}
[PersistMember]
public string ...
2
votes
2answers
129 views
Composite Attribute
Is there any way of making a composite attribute in C# to provide equivalent metadata at compile time?
E.g, change:
[ClassInterface(ClassInterfaceType.AutoDual)]
[ProgId("MyProgId")]
...
8
votes
3answers
253 views
Using Attributes to Call Methods
I have various individual methods which all need to perform the same functions before continuing on with their own implementation. Now I could implement these functions in each method, but I was ...
1
vote
1answer
108 views
Internal Abstract Property - Custom Attributes
I'm having problems accessing the attributes of a property defined in an abstract class when property is marked internal. Here is some example code:
[AttributeUsage(AttributeTargets.Property, ...
2
votes
1answer
255 views
Get All properties that has a custom attribute with specific values [duplicate]
Possible Duplicate:
How to get a list of properties with a given attribute?
I have a custom class like this
public class ClassWithCustomAttributecs
{
[UseInReporte(Use=true)]
...
1
vote
1answer
154 views
Linq Select by PK?
Is it possible to perform a LinQ select by PK dynamically ?
Something like that :
public T FindByPK(IEnumerable<T> table, T itemToFind)
{
}
T is a mapping from table (LinQ to SQL ...
0
votes
1answer
134 views
How to automatically init any classes in NET assembly
Ok First Of all let me say, that What I am thinking of is to create attribute and use that Attribute to Automatically create instances of the classes decorated with that attribute. there is really to ...
1
vote
1answer
45 views
DataMember information of the member that the attribute applied to
How can I get information of data member (MethodInfo, PropertyInfo Etc) from the attribute is applied to it.
[Custom]
public void MethodA()
{
}
[AttributeUsage(AttributeTargets.Method, Inherited = ...
7
votes
2answers
164 views
Best way to access attributes
I am working on a framework that uses some Attribute markup. This will be used in an MVC project and will occur roughly every time I view a specific record in a view (eg /Details/5)
I was wondering ...
2
votes
2answers
99 views
Access attribute inside property
I have a property which has an attribute applied to it. How can i access the attribute from inside the property getter or setter?
class Person {
[ID("A","B")]
public Address HomeAddress
...
0
votes
1answer
248 views
Use C# EnumBuilder to create Enum with Attribute
I have used the EnumBuilder in C# to create Enums based on tables in my database. However, as my framework is designed, the enums we have also contain an attribute which is usually the name associated ...
1
vote
1answer
69 views
How to know the attributes defined for a type?
I have defined a custom attribute and added it to a few classes. Know I'm using reflection to capture all types in the assembly. I want to filter out only the type that have this attribute defined.
...
0
votes
2answers
148 views
Attributes within Method Body
I know that attributes are not supported inside the method body but i wanted to know maybe someone has work around this. What i am interested in is a technique that allows you to enter custom ...
2
votes
2answers
1k views
How to get unit test method attributes at runtime from within an NUnit test run?
I store various information about a given test (IDs for multiple bug tracking systems) in an attribute like so:
[TestCaseVersion("001","B-8345","X543")]
public void TestSomethingOrOther()
In order ...
1
vote
2answers
95 views
How select some of property of a Class by custom attribute
I have a class by 3 property.
class Issuance
{
[MyAttr]
virtual public long Code1 { get; set; }
[MyAttr]
virtual public long Code2 { get; set; }
virtual public long Code3 { get; ...
2
votes
1answer
475 views
abap getting all class attributes (reflection?)
i want to read all attributes from a class in abap (maybe via reflection?).
after that i want to filter out all constants from a specifed type.
how can i do this?
i know that i can read the all items ...
1
vote
2answers
183 views
Accessor methods and Java Reflection
This is a question about how Java does reflection internally.
I have a abstract class say
SuperClass
and two chlid classes from SuperClass,
ChildClass1 and ChildClass2.
SuperClass defines a ...
1
vote
1answer
750 views
Setting ReadOnly Property in PropertyGrid Sets All Properties Readonly
I am using a PropertyGrid control to edit my class properties and I am trying to set certain properties read-only depending on other property settings.
This is the code of my class:
Imports ...
1
vote
3answers
135 views
Nullable(Of ) : type of parameter for <Attribute>. Does it work?
I'm trying to use the type Boolean for some parameter.
<AttributeUsage(AttributeTargets.Method, Inherited:=True, AllowMultiple:=False)>
Public Class MyAttribute
Inherits Attribute
...
0
votes
1answer
1k views
Get custom attributes from an object
When I try to get the custom attributes from an object the function returns null. Why?
class Person
{
[ColumnName("first_name")]
string FirstName { get; set; }
Person()
{
...
0
votes
1answer
43 views
Is this possible to set Attributes in an Class Extension?
Is this possible to use <Attributes> on a method in a Class extension ?
Here is a Class A
Public Class Goblin
Inherits Monster
Enum goblinsRole
Chief
Grount
End Enum
Public ...
2
votes
4answers
160 views
Can I get a method attribute from a generic delegate?
I'm sure there's an answer already on the forum somewhere, but I haven't been able to find it so far. As per this example I am using anonymous methods in conjunction with a delegate in order to have ...
6
votes
1answer
333 views
Extract Attributes from c# source code without Reflection
I want to extract custom attributes from source code from different .CS files. I have list of files .
Scenario is that i have Project A which reads files of Project B. It has to extract all ...
1
vote
3answers
63 views
Cannot extract attribute data
I am trying to extract attribute. Attribute are custom attributes.
But some how i am not able to use object.id thing.
For example my commented code adpter.id is not valid, even you see i have ...
0
votes
2answers
140 views
How to reverse resolve custom attributes?
i have an enum with custom attributes, something like:
public enum EnumStatus
{
[CharValue('*')]
Empty,
[CharValue('A')]
value1,
[CharValue('P')]
value2,
}
the "forward" ...
1
vote
2answers
102 views
How to prevent Type.GetProperties() from accessing properties in object
I use massive.cs as a DAL, but I create Models that have Lists for their Children.
The problem is I can't figure out a good way to hide those from GetProperties(). Massive uses that to create the ...
1
vote
2answers
85 views
Inherit attribute info of class in method
I've the following attribute:
class HandlerAttribute : System.Attribute
{
public string MainName { get; private set; }
public string SubName { get; private set; }
public ...
3
votes
1answer
159 views
Is it possible to use an Attribute to override a method?
For example, would it be possible to mark a 'Man' class with the 'PetOwner' attribute, which overrides the constructor with something that creates a 'Dog' object as well as calling the 'Man' base ...
6
votes
3answers
161 views
Why GetCustomAttributes returns object[] instead of Attribute[]?
Just curious, see MemberInfo.GetCustomAttributes. Is it hinting that it may contain a non-Attribute object?
1
vote
2answers
209 views
Reflection or Regex on Custom attributes
I have seen Attributes and Reflection and now i know how to create and use reflection to see meta data of attribute but is it possible to make a standalone tool that can analyse a cs file and extract ...
0
votes
1answer
65 views
See if attribute is being applied to a property that is of type String within the class attribute
say I have the attribute:
public class Column_Attribute : Attribute
{
public string DbType { get; set; }
public bool IsPrimaryKey { get; set; }
}
then I can apply that attribute to a ...

