Extensibility is a system design principle where the implementation takes future growth into consideration. For iOS app extensions, use [ios-app-extension].
Questions tagged [extensibility]
291 questions
0
votes
6 answers
Easy to extend IDE for C
I want an simple IDE/editor for C in Linux to which I can add features easily. For example: I want to add a right click menu item and a related action for the editor. It should be easy to extent and add any desirable functionality. I tried eclipse…

Sachin Khot
- 1,412
- 2
- 14
- 18
0
votes
1 answer
Detecting BCC in outlook inbox and other folders
I am creating outlook addins using Com addins C# and .net 2.0. I have created Add-in which detects BCC for the Emails present in Inbox etc.
This Add-in actually detects if the email id which is configured in outlook is not present in the TO, CC and…
0
votes
2 answers
LINQ to SQL Table Extensibility Methods
If I have a LINQ to SQL table that has a field called say Alias.
There is then a method stub called OnAliasChanging(string value);
What I want to do is to grab the value, check the database whether the value already exists and then set the value to…

griegs
- 22,624
- 33
- 128
- 205
0
votes
2 answers
MVC - Creating new Views without adding Actions to Controller
I'm working on a mini CMS-like application using asp.net MVC 1.0 (I will upgrade it once 2.0 is released). Once feature I want, that is pretty vital to a CMS, is the ability for an admin to add pages to their site.
Essentially, if the admin wants…

splatto
- 3,159
- 6
- 36
- 69
0
votes
1 answer
Plugin model with user supplied RegEx
I have a program in C# WPF which analyzes certain log files. Each log contains lines of data in a format which contains an address and a data offset.
For example, some log files can have the format:
mmio address : data
or some can have the…

excray
- 2,738
- 4
- 33
- 49
0
votes
1 answer
Resources for programming a system that supports plugins
I need resources -preferably a text- about programming systems that supports plugins or extensibility and other related detailed stuff, like handling permissions and resources for those plugins

Mohamed Atia
- 298
- 1
- 10
0
votes
1 answer
Editable FullPath property of a file in the Properties grid - Visual Studio 2008
I have a project in my VS 2008 solution containing file items. Each item have a standard read only property called "FullPath" in the Properties Grid.
What is the easiest way to make the FullPath property of the Properties Grid editable?

sh0gged
- 509
- 2
- 7
- 17
0
votes
1 answer
Building scalable applications VS just Cloud ready applications
Recently, I got into a discussion with an Architect who is known to be a seasoned Architect. The discussion was around an ideal Architecture and design for a multi-tenant Web Based Application that runs in a Web Farm. The application’s only job is…

iarchitect
- 1
- 2
0
votes
1 answer
IRibbonExtensibility->GetCustomUI calling from a class other than Connect.cs
I am using Vs2010 -> Extensibility->Shared Add-in
Connect.cs file
public class Connect : Object, Extensibility.IDTExtensibility2, IRibbonExtensibility
{
public string GetCustomUI(string RibbonID)
{
return…

C J
- 429
- 1
- 10
- 34
0
votes
1 answer
Using WCF Configuration Internally - How do I use my WCF services internally and externally?
Forgive the title, I was not quite sure how to describe the problem I am running into.
I am exposing an API over both SOAP and REST endpoints. I have used some of the WCF extensibility features to use HTTP headers for certain…

TheJediCowboy
- 8,924
- 28
- 136
- 208
0
votes
1 answer
Why “extensibility hooks” makes continuous design harder?
I've recently read "Continuous Design" article written by Jim Shore. In one place he wrote:
In particular, up-front designs often include “extensibility hooks”
for future design changes. This approach makes continuous design
harder and should…

rovsen
- 4,932
- 5
- 38
- 60
0
votes
1 answer
Adding custom tasks to the web site page in IIS 7(.5)
Is it possible to add a TaskItem (or TaskList) to the website page (Web Objects Home Page)?
I'd like to provide some contextual access to my addin and I can't seem to find a good integration point.

Richard Szalay
- 83,269
- 19
- 178
- 237
0
votes
2 answers
How do I Extend the Silverlight TabControl for DataBinding?
Yi-Lun Luo at Microsoft says:
[C]urrently [the] TabControl doesn't override
PrepareContainerForItemOverride, so it
won't automatically wrap your data
source in TabItems.
So the question is: How do I create my own control that:
Extends the…

jedmao
- 10,224
- 11
- 59
- 65
0
votes
1 answer
TryReceiveRequest gets called infinite times
I have built a custom binding for being able to receive HTTP messages from an additional source. However, it is not bug-free yet.
I've observed that my service pushes CPU usage up to 100 % as soon as the first request was processed and the service…

Etan
- 17,014
- 17
- 89
- 148
0
votes
1 answer
WebServiceHost doesn't invoke OnAcceptChannel of custom ChannelListener
I am currently building a custom binding which gets HTTP requests from a different source than from a listening TCP socket.
When I access and open a channel directly, there are no problems.
However, problems occur when I try to host my binding in an…

Etan
- 17,014
- 17
- 89
- 148