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
1 answer
What is a Template Input File? (in the FIM Synchronisation Service)
I have been trying to create an extended management agent in the Synchronization Service Manager. I go through the wizard, select an 'Extensible Connectivity', pick the dll file that I have just created using 'Create Extension Projects' and, moving…

Arnaud
- 430
- 1
- 3
- 13
0
votes
1 answer
Can JSON Schema core keywords be redefined?
I would like to redefine the "title" keyword in JSON Schema to have a different structure: an object with two properties, one for "singular" and one for "plural".
Is this possible? Or do I need a new keyword?
(Section 5.6 of the Core spec reads as…

Ben Vitale
- 1,754
- 3
- 17
- 27
0
votes
3 answers
android mobile development performance vs extensibility
im developing a game in android, and i've been thinking about subdividing many of the elements of the game (e.g. game objects) into separate classes and sub-classes. but i know that method calls to these objects will cause some overhead. would it be…

mixm
- 531
- 2
- 4
- 18
0
votes
1 answer
Is there a Xamarin Studio SDK?
One of the great things about Visual Studio is its continually evolving extensibility story. Granted, they can be challenging to build, but the ability to create plugins and extensions is one of the features that has sustained the popularity of the…

John Holliday
- 1,268
- 1
- 11
- 19
0
votes
1 answer
MetaData with InheritedExport
Im trying to export all classes which implement an IJob interface while also passing metadata at the individual class level. What I've tried:
Export:
[InheritedExport(typeof(IJob))]
public interface IJob
{
int Run();
}
Import:
…

InContext
- 2,461
- 12
- 24
0
votes
0 answers
How to write a designer extension or editor extension with generated file as child?
I am trying to figure out how to make an editor extension (like T4 templates) or designer extension (like a WinForms designer) that produces a generated file and a "code-behind" file.
For the T4-style code generator I know that a single-file…

Qwertie
- 16,354
- 20
- 105
- 148
0
votes
1 answer
Stuffing SharpDX and OpenTK in different game engine implementing assemblies?
I want my C# engine to give the user the choice between using Direct3D or OpenGL.
My engine internally is designed like this abstracted example for a shader class:
internal class Shader
{
private IShaderImplementation _implementation;
…

Ray
- 7,940
- 7
- 58
- 90
0
votes
1 answer
Will iOS 8's action extensibility be enabled in the default mail application?
With the advent of extensibility in iOS 8, will one be able to make an action extension for the default iOS 8 mail application?

turmeric
- 535
- 2
- 7
- 16
0
votes
1 answer
How to implement extensions mechanism in appserver?
I developing the servlet that should work 24/7. And I want to create some extensions mechanism: placing new jar in classpath must be detected by the main servlet and some class should loaded (without appserver restart).
Purpose: main servlet…

user283010
- 125
- 1
- 7
0
votes
3 answers
ASP.NET MVC URL generation extensibility points
What are extensibility points of URL generation in ASP.NET MVC?
Routes - virtual path depends on it
???
Addendum 1
Particularily, I need to control not only path part of URL but the host also. And I'd like to embed my generation logics into MVC…

Anthony Serdyukov
- 4,268
- 4
- 31
- 37
0
votes
1 answer
secure scripting within a nodejs application
I want to build a nodejs application that allows users to enter their own JavaScript scripts to interact with my applications API for extensibility purposes.
I want this to be secure; I only want a specific set of objects exposed to the scripts.
Is…

Jack Allan
- 14,554
- 11
- 45
- 57
0
votes
1 answer
How Add tabs and pages on TFS Web Access 2013?
I'm using TFS 2013 with Team Web Access and I want to create custom tab on TWA. It is possible because Urban Turtle has some functionality (they've added custom tabs).
How I add custom tab to TWA? Anyone can help me?

user3401959
- 11
0
votes
2 answers
Where do I plug in into WCF to be notified when a message arrives?
I'm writing a sample console service host and I want to plug into WCF stack to be able to print a message to console when new message arrives, even if it won't get processed by the service at the moment (because service is working on previous…

Krzysztof Kozmic
- 27,267
- 12
- 73
- 115
0
votes
1 answer
FTP7.5 - C# IFtpLogProvider incorrect LocalIP/RemoteIP
I am running into the following issue, which applies to Server 2008 R2 only. Microsoft FTP 7.5 has an extensibility interface, IFtpLogProvider, that I am trying to implement to do some custom logging when people connect.
As has been reported here…

asteroid
- 755
- 3
- 9
- 20
0
votes
2 answers
.NET Plug In ... where to go
I'm writing a Windows Application that connects to a webshop through it's API and reads/writes values.
The Webshop can have multiple Payment gateways and I was thinking about writing a plugin to each one and create a user interface that will be…

balexandre
- 73,608
- 45
- 233
- 342