Class DebugService
Class providing services specific to debugger implementations.
Inheritance
System.Object
    DebugService
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: System.Dynamic.ExpandoObject
Assembly: cs.temp.dll.dll
Syntax
public sealed class DebugService : IScriptPrivateResource
  Properties
OwnerScript
Gets the script owning this resource.
Declaration
public Script OwnerScript { get; }
  Property Value
| 
        Script
         The script owning this resource.  | 
    
Implements
Methods
ResetBreakPoints(SourceCode, HashSet<Int32>)
Resets the break points for a given file. Supports only line-based breakpoints.
Declaration
public HashSet<int> ResetBreakPoints(SourceCode src, HashSet<int> lines)
  Parameters
| 
        SourceCode
        src
         The source.  | 
    
| 
        HashSet<System.Int32>
        lines
         The lines.  | 
    
Returns
| 
        HashSet<System.Int32>
         The lines for which breakpoints have been set  |