EditAndContinueMethodDebugInformation.Create Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
Create(ImmutableArray<Byte>, ImmutableArray<Byte>) |
Deserializes Edit and Continue method debug information from specified blobs. |
Create(ImmutableArray<Byte>, ImmutableArray<Byte>, ImmutableArray<Byte>) |
Deserializes Edit and Continue method debug information from specified blobs. |
Create(ImmutableArray<Byte>, ImmutableArray<Byte>)
Deserializes Edit and Continue method debug information from specified blobs.
public:
static Microsoft::CodeAnalysis::Emit::EditAndContinueMethodDebugInformation Create(System::Collections::Immutable::ImmutableArray<System::Byte> compressedSlotMap, System::Collections::Immutable::ImmutableArray<System::Byte> compressedLambdaMap);
public static Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation Create (System.Collections.Immutable.ImmutableArray<byte> compressedSlotMap, System.Collections.Immutable.ImmutableArray<byte> compressedLambdaMap);
static member Create : System.Collections.Immutable.ImmutableArray<byte> * System.Collections.Immutable.ImmutableArray<byte> -> Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation
Public Shared Function Create (compressedSlotMap As ImmutableArray(Of Byte), compressedLambdaMap As ImmutableArray(Of Byte)) As EditAndContinueMethodDebugInformation
Parameters
- compressedSlotMap
- ImmutableArray<Byte>
Local variable slot map.
- compressedLambdaMap
- ImmutableArray<Byte>
Lambda and closure map.
Returns
Exceptions
Invalid data.
Applies to
Create(ImmutableArray<Byte>, ImmutableArray<Byte>, ImmutableArray<Byte>)
Deserializes Edit and Continue method debug information from specified blobs.
public static Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation Create (System.Collections.Immutable.ImmutableArray<byte> compressedSlotMap, System.Collections.Immutable.ImmutableArray<byte> compressedLambdaMap, System.Collections.Immutable.ImmutableArray<byte> compressedStateMachineStateMap);
static member Create : System.Collections.Immutable.ImmutableArray<byte> * System.Collections.Immutable.ImmutableArray<byte> * System.Collections.Immutable.ImmutableArray<byte> -> Microsoft.CodeAnalysis.Emit.EditAndContinueMethodDebugInformation
Public Shared Function Create (compressedSlotMap As ImmutableArray(Of Byte), compressedLambdaMap As ImmutableArray(Of Byte), compressedStateMachineStateMap As ImmutableArray(Of Byte)) As EditAndContinueMethodDebugInformation
Parameters
- compressedSlotMap
- ImmutableArray<Byte>
Local variable slot map.
- compressedLambdaMap
- ImmutableArray<Byte>
Lambda and closure map.
- compressedStateMachineStateMap
- ImmutableArray<Byte>
State machine suspension points, if the method is the MoveNext method of the state machine.
Returns
Exceptions
Invalid data.