//------------------------------------------------------------------------------
// <auto-generated>
// This code was generated by a tool.
// Runtime Version:2.0.50727.1378
//
// Changes to this file may cause incorrect behavior and will be lost if
// the code is regenerated.
// </auto-generated>
//------------------------------------------------------------------------------
namespace dasBlog.Storage.Test.StorageBusClient{
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
[System.ServiceModel.ServiceContractAttribute(ConfigurationName="StorageBusClient.IStorageBus")]
internal interface IStorageBus {
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStorageBus/AddStorageNode", ReplyAction="http://tempuri.org/IStorageBus/AddStorageNodeResponse")]
void AddStorageNode(string scopeUri, string nodeName, dasBlog.Storage.PathMappings relations, string mexEndpointAddress, string username, string password);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStorageBus/AddStreamStorageNode", ReplyAction="http://tempuri.org/IStorageBus/AddStreamStorageNodeResponse")]
void AddStreamStorageNode(string scopeUri, string nodeName, dasBlog.Storage.PathMappings relations, string mexEndpointAddress, string username, string password);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStorageBus/RemoveStorageNode", ReplyAction="http://tempuri.org/IStorageBus/RemoveStorageNodeResponse")]
void RemoveStorageNode(string scopeUri, string nodeName);
[System.ServiceModel.OperationContractAttribute(Action="http://tempuri.org/IStorageBus/CreateScope", ReplyAction="http://tempuri.org/IStorageBus/CreateScopeResponse")]
void CreateScope(string scopeUri);
}
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
internal interface IStorageBusChannel : dasBlog.Storage.Test.StorageBusClient.IStorageBus, System.ServiceModel.IClientChannel {
}
[System.Diagnostics.DebuggerStepThroughAttribute()]
[System.CodeDom.Compiler.GeneratedCodeAttribute("System.ServiceModel", "3.0.0.0")]
internal partial class StorageBusClient : System.ServiceModel.ClientBase<dasBlog.Storage.Test.StorageBusClient.IStorageBus>, dasBlog.Storage.Test.StorageBusClient.IStorageBus {
public StorageBusClient() {
}
public StorageBusClient(string endpointConfigurationName) :
base(endpointConfigurationName) {
}
public StorageBusClient(string endpointConfigurationName, string remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public StorageBusClient(string endpointConfigurationName, System.ServiceModel.EndpointAddress remoteAddress) :
base(endpointConfigurationName, remoteAddress) {
}
public StorageBusClient(System.ServiceModel.Channels.Binding binding, System.ServiceModel.EndpointAddress remoteAddress) :
base(binding, remoteAddress) {
}
public void AddStorageNode(string scopeUri, string nodeName, dasBlog.Storage.PathMappings relations, string mexEndpointAddress, string username, string password) {
base.Channel.AddStorageNode(scopeUri, nodeName, relations, mexEndpointAddress, username, password);
}
public void AddStreamStorageNode(string scopeUri, string nodeName, dasBlog.Storage.PathMappings relations, string mexEndpointAddress, string username, string password) {
base.Channel.AddStreamStorageNode(scopeUri, nodeName, relations, mexEndpointAddress, username, password);
}
public void RemoveStorageNode(string scopeUri, string nodeName) {
base.Channel.RemoveStorageNode(scopeUri, nodeName);
}
public void CreateScope(string scopeUri) {
base.Channel.CreateScope(scopeUri);
}
}
}
|