Questions tagged [notimplementedexception]

NotImplementedException is a .Net exception used as a placeholder in order to alert programmers to the fact that a method has not been implemented.

The NotImplementedException is a built-in implemented as part of the System namespace.

It is thrown when a method has not been implemented, alerting the caller that the method is not available and should not be used.

As part of the template code for auto-implementing interface methods, a NotImplementedException will be inserted into the body of the auto-implemented method.

The MSDN Documentation has more information regarding the use of this exception.

77 questions
1
vote
1 answer

(GC.TryStartNoGCRegion()) The method or operation is not implemented. on Mono

I'm trying to stop C# from collecting garbage for some time. I found that I can do this using the GC.TryStartNoGCRegion() method. However, this throws this exception: Unhandled Exception: System.NotImplementedException: The method or operation is…
MomoVR
  • 113
  • 1
  • 8
1
vote
0 answers

Is there any possibility to solve Exception in thread "main" scala.NotImplementedError: an implementation is missing?

Im using a code name watrworks to extract text from pdf but after all i have done i get this error text-works --input in.pdf --output-file output.json Exception in thread "main" scala.NotImplementedError: an implementation is missing at…
Amir grbn
  • 11
  • 2
1
vote
2 answers

webrequest get throws an exception "The remote server returned an error: (501) Not Implemented."

I'm trying to load a file using webrequest method. First I need to log in then get a file or a directory listing. https:///xxx.yyy.zzz/login_template When I look at the website source in firefox, I see
Boroda
  • 195
  • 1
  • 7
  • 23
1
vote
1 answer

OData v4 DefaultODataBatchHandler NotImplementedException

In my web service I've setup for batch requests. I wrapped the DefaultODataBatchHandler class just to add break points. It is processing the requests successfully and the CreateResponseMessageAsync method is creating a 200 OK response. But the…
1
vote
0 answers

ServiceAccountCredential throws Not Implemented Exception

Newbie here, excited to ask my first quetion. :-) I am writing an app in C# with Xamarin.Forms (shproj) in Visual Studio 2015 that needs to upload a databank to a folder in my Google Drive using a service account following these instructions. I use…
1
vote
1 answer

NotImplementedException when Accessing ServiceAccountCredential C#

I have a Windows app that access a Google spreadsheet to create a phone book. When I try to open the phone book, I get flagged with System.NotImplementedException: The method or operation is not implemented. I'm not really sure why, because it seems…
1
vote
1 answer

ReSharper Replace All Method Implementations with NotImplementedException

I have a huge library of classes I copied and I want to set all methods in all classes to: throw new NotImplementedException(); Does ReSharper have a way to do this globally over the whole solution?
1
vote
0 answers

NotimplementedException in System.Core.dll

I am getting the error below in my code: An unhandled exception of type 'System.NotImplementedException' occurred in >System.Core.dll Additional information: The method or operation is not implemented. This happens when I try to set the datasource…
james33
  • 109
  • 1
  • 7
1
vote
1 answer

Using cloneSheet with poi SXSSF

I am using SXSSF to write large numbers of data in one excel-File. I have seen that 'cloneSheet' method isn't implemented: /** * Create an Sheet from an existing sheet in the Workbook. * * @return Sheet representing the cloned sheet. */ public…
Louisa
  • 55
  • 10
1
vote
3 answers

Ruby class: handle any not implemented method with yaml

I want to create a special settings class Settings. The class should be able to handle cases when a user types something like Settings.new.method_1.method_2.method_3 and it's translated to something like: result = nil if…
benams
  • 4,308
  • 9
  • 32
  • 74
1
vote
1 answer

Parse.com for Windows Phone 8 - get_LocalSettings() not implemented

I am using Parse.com storage service for Windows Phone 8. When I try to initialize ParseClient.Initialize("MY_APP_ID","MY_NET_ID"); I am getting this exception: System.NotImplementedException: The method or operation is not implemented. at…
user4110504
1
vote
1 answer

How can keep the debugger from breaking on NotImplementedException exception?

I've tried this, but it doesn't seem to work: Application.SetUnhandledExceptionMode(UnhandledExceptionMode.CatchException); Application.ThreadException += new…
John
  • 63
  • 1
  • 3
1
vote
3 answers

Adding a body to a virtual method that's supposed to be overridden

I have a class that is a base for some other classes. The class has a virtual method, which is supposed to be overridden in the derived classes. This is how it's defined: protected virtual TableFormat GetFormat() { throw new…
John NoCookies
  • 1,041
  • 3
  • 17
  • 28
1
vote
2 answers

Mono Documentation for NotImplementedException and MonoTodo

I'm new to Mono and plan to port my application over, if possible. I've run MoMA and there are some places it has identified that I'm calling that could throw a NotImplementedException or are tagged MonoTodo. Is there anywhere I can get more…
jasonh
  • 29,297
  • 11
  • 59
  • 61
1
vote
2 answers

Using COM works with VBScript but fails with c#.net

I got an DLL registered on my local system. (Which I didn't own) When I create the COM object using VBScript and calling the function everything works fine: set Elo = CreateObject("jniwrapper.elocomserver") Elo.refreshIntray() But when using C#.net…
GameScripting
  • 16,092
  • 13
  • 59
  • 98