I am looking to set full trust for a single web part, is this possible? manifest.xml maybe?
C# – How to set full trust for a single Web Part in SharePoint
c++full-trustsharepointweb-parts
Related Question
- C# – Could not establish trust relationship for SSL/TLS secure channel — SOAP
- C# – Get property value from string using reflection
- C# – How to remedy “The breakpoint will not currently be hit. No symbols have been loaded for this document.” warning
- C# – JavaScriptSerializer – JSON serialization of enum as string
- C# – How to make an HTTP POST web request
- C# – How to call asynchronous method from synchronous method in C#
- C# – How to add full trust for assembly
Best Solution
Have you tried registering the assembly in the GAC? This is the preferred approach to giving any assembly full trust on your machine:
Hope that helps. Let me know if I misunderstood your question.