@@ -77,81 +77,5 @@ public static class NativeInterop
7777 public static extern IntPtr MessageReify ( InteractionHandle message ) ;
7878
7979 #endregion Http Interop Support
80-
81- #region Verifier Support
82-
83- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_new_for_application" ) ]
84- public static extern IntPtr VerifierNewForApplication ( string name , string version ) ;
85-
86- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_shutdown" ) ]
87- public static extern IntPtr VerifierShutdown ( IntPtr handle ) ;
88-
89- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_set_provider_info" ) ]
90- public static extern void VerifierSetProviderInfo ( IntPtr handle , string name , string scheme , string host , ushort port , string path ) ;
91-
92- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_add_provider_transport" ) ]
93- public static extern void AddProviderTransport ( IntPtr handle , string protocol , ushort port , string path , string scheme ) ;
94-
95- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_set_filter_info" ) ]
96- public static extern void VerifierSetFilterInfo ( IntPtr handle , string description , string state , byte noState ) ;
97-
98- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_set_provider_state" ) ]
99- public static extern void VerifierSetProviderState ( IntPtr handle , string url , byte teardown , byte body ) ;
100-
101- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_set_verification_options" ) ]
102- public static extern void VerifierSetVerificationOptions ( IntPtr handle ,
103- byte disableSslVerification ,
104- uint requestTimeout ) ;
105-
106- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_set_publish_options" ) ]
107- public static extern void VerifierSetPublishOptions ( IntPtr handle ,
108- string providerVersion ,
109- string buildUrl ,
110- string [ ] providerTags ,
111- ushort providerTagsLength ,
112- string providerBranch ) ;
113-
114- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_set_consumer_filters" ) ]
115- public static extern void VerifierSetConsumerFilters ( IntPtr handle , string [ ] consumerFilters , ushort consumerFiltersLength ) ;
116-
117- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_add_custom_header" ) ]
118- public static extern void AddCustomHeader ( IntPtr handle , string name , string value ) ;
119-
120- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_add_file_source" ) ]
121- public static extern void VerifierAddFileSource ( IntPtr handle , string file ) ;
122-
123- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_add_directory_source" ) ]
124- public static extern void VerifierAddDirectorySource ( IntPtr handle , string directory ) ;
125-
126- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_url_source" ) ]
127- public static extern void VerifierUrlSource ( IntPtr handle , string url , string username , string password , string token ) ;
128-
129- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_broker_source_with_selectors" ) ]
130- public static extern void VerifierBrokerSourceWithSelectors ( IntPtr handle ,
131- string url ,
132- string username ,
133- string password ,
134- string token ,
135- byte enablePending ,
136- string includeWipPactsSince ,
137- string [ ] providerTags ,
138- ushort providerTagsLength ,
139- string providerBranch ,
140- string [ ] consumerVersionSelectors ,
141- ushort consumerVersionSelectorsLength ,
142- string [ ] consumerVersionTags ,
143- ushort consumerVersionTagsLength ) ;
144-
145- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_execute" ) ]
146- public static extern int VerifierExecute ( IntPtr handle ) ;
147-
148- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_logs" ) ]
149- public static extern IntPtr VerifierLogs ( IntPtr handle ) ;
150-
151-
152- [ DllImport ( DllName , EntryPoint = "pactffi_verifier_output" ) ]
153- public static extern IntPtr VerifierOutput ( IntPtr handle , byte stripAnsi ) ;
154-
155- #endregion
15680 }
15781}
0 commit comments