Пример #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);
     }
 }
Пример #2
0
 public OperationNode(ExplorerForm form, OperationDescription operation, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Operation = operation;
 }
Пример #3
0
 public ServiceNode(ExplorerForm form,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {}
Пример #4
0
 public AddressNode(ExplorerForm form, EndpointAddress address, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Address = address;
 }
Пример #5
0
 public ContractNode(ExplorerForm form, ContractDescription contract, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Contract = contract;
 }
Пример #6
0
 public RouterTreeNode(ExplorerForm form, ServiceBusNode serviceBusNode, string name) : base(form, serviceBusNode, name, ExplorerForm.RouterIndex)
 {
 }
Пример #7
0
 public BindingNode(ExplorerForm form, Binding binding, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Binding = binding;
 }
Пример #8
0
 public AddressNode(ExplorerForm form,EndpointAddress address,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Address = address;
 }
Пример #9
0
 public OperationNode(ExplorerForm form,OperationDescription operation,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Operation = operation;
 }
Пример #10
0
 public MexNode(ExplorerForm form, string text, int imageIndex, int selectedImageIndex) : base(text, imageIndex, selectedImageIndex)
 {
     m_Form = form;
 }
Пример #11
0
 public EndpointNode(ExplorerForm form, ServiceEndpoint endpoint, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     m_Endpoint = endpoint;
 }
Пример #12
0
 public ServiceNode(string mexAddress, ExplorerForm form, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
     MexAddress = mexAddress;
 }
Пример #13
0
 public ContractNode(ExplorerForm form,ContractDescription contract,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Contract = contract;
 }
Пример #14
0
 public EndpointNode(ExplorerForm form,ServiceEndpoint endpoint,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Endpoint = endpoint;
 }
Пример #15
0
 public BindingNode(ExplorerForm form,Binding binding,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    m_Binding = binding;
 }
Пример #16
0
 public MexNode(ExplorerForm form,string text,int imageIndex,int selectedImageIndex) : base(text,imageIndex,selectedImageIndex)
 {
    m_Form = form;
 }
Пример #17
0
 public ServiceNode(ExplorerForm form, string text, int imageIndex, int selectedImageIndex) : base(form, text, imageIndex, selectedImageIndex)
 {
 }
Пример #18
0
 public ServiceNode(string mexAddress,ExplorerForm form,string text,int imageIndex,int selectedImageIndex) : base(form,text,imageIndex,selectedImageIndex)
 {
    MexAddress = mexAddress;
 }