Ejemplo n.º 1
0
 void AddKnownTypes(OperationDescription operation)
 {
     m_KnownTypesListView.Items.Clear();
     foreach (Type type in operation.KnownTypes)
     {
         string typeName = ExplorerForm.ExtractTypeName(type);
         m_KnownTypesListView.Items.Add(typeName);
     }
 }
Ejemplo n.º 2
0
 public OperationNode(ExplorerForm form, OperationDescription operation, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Operation = operation;
 }
Ejemplo n.º 3
0
 public ServiceNode(ExplorerForm form,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {}
Ejemplo n.º 4
0
 public AddressNode(ExplorerForm form, EndpointAddress address, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Address = address;
 }
Ejemplo n.º 5
0
 public ContractNode(ExplorerForm form, ContractDescription contract, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Contract = contract;
 }
Ejemplo n.º 6
0
 public RouterTreeNode(ExplorerForm form, ServiceBusNode serviceBusNode, string name) : base(form, serviceBusNode, name, ExplorerForm.RouterIndex)
 {
 }
Ejemplo n.º 7
0
 public BindingNode(ExplorerForm form, Binding binding, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Binding = binding;
 }
Ejemplo n.º 8
0
 public AddressNode(ExplorerForm form,EndpointAddress address,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Address = address;
 }
Ejemplo n.º 9
0
 public OperationNode(ExplorerForm form,OperationDescription operation,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Operation = operation;
 }
Ejemplo n.º 10
0
 public MexNode(ExplorerForm form, string text, int imageIndex, int selectedImageIndex) : base(text, imageIndex, selectedImageIndex)
 {
     m_Form = form;
 }
Ejemplo n.º 11
0
 public EndpointNode(ExplorerForm form, ServiceEndpoint endpoint, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Endpoint = endpoint;
 }
Ejemplo n.º 12
0
 public ServiceNode(string mexAddress, ExplorerForm form, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     MexAddress = mexAddress;
 }
Ejemplo n.º 13
0
 public ContractNode(ExplorerForm form,ContractDescription contract,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Contract = contract;
 }
Ejemplo n.º 14
0
 public EndpointNode(ExplorerForm form,ServiceEndpoint endpoint,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Endpoint = endpoint;
 }
Ejemplo n.º 15
0
 public BindingNode(ExplorerForm form,Binding binding,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Binding = binding;
 }
Ejemplo n.º 16
0
 public MexNode(ExplorerForm form,string text,int imageIndex,int selectedImageIndex) : base(text,imageIndex,selectedImageIndex)
 {
    m_Form = form;
 }
Ejemplo n.º 17
0
 public ServiceNode(ExplorerForm form, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
 }
Ejemplo n.º 18
0
 public ServiceNode(string mexAddress,ExplorerForm form,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    MexAddress = mexAddress;
 }