Skip to content

Commit f419f47

Browse files
committed
added Crypto to HandlerStartInfo
1 parent 9c73e5e commit f419f47

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Synapse.Common/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,4 +38,4 @@
3838
// by using the '*' as shown below:
3939
// [assembly: AssemblyVersion("1.0.*")]
4040
[assembly: AssemblyVersion( "0.1.0.0" )]
41-
[assembly: AssemblyFileVersion( "0.1.17144.0" )]
41+
[assembly: AssemblyFileVersion( "0.1.17145.0" )]

Synapse.Core/Classes/HandlerStartInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public HandlerStartInfo(IStartInfo si)
2929

3030
public SecurityContext RunAs { get; internal set; }
3131

32-
public List<string> CryptoPaths { get; internal set; }
32+
public CryptoProvider Crypto { get; internal set; }
3333
}
3434

3535
public class HandlerStartInfoData

Synapse.Core/Properties/AssemblyInfo.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@
3737
// by using the '*' as shown below:
3838
// [assembly: AssemblyVersion("1.0.*")]
3939
[assembly: AssemblyVersion( "0.1.0.0" )]
40-
[assembly: AssemblyFileVersion( "0.1.17144.0" )]
40+
[assembly: AssemblyFileVersion( "0.1.17145.0" )]

Synapse.Core/Runtime/PlanRuntime.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -284,7 +284,7 @@ ExecuteResult ExecuteHandlerProcessInProc(SecurityContext parentSecurityContext,
284284
InstanceId = a.InstanceId,
285285
ParentExitData = parentExitData,
286286
RunAs = sc,
287-
CryptoPaths = a.Parameters?.Crypto?.Elements
287+
Crypto = a.Parameters?.Crypto
288288
};
289289
a.Handler.StartInfo = new HandlerStartInfoData( startInfo );
290290

0 commit comments

Comments
 (0)