~ubuntu-branches/ubuntu/trusty/monodevelop/trusty-proposed

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<Type Name="ABPersonInstantMessageKey" FullName="MonoMac.AddressBook.ABPersonInstantMessageKey">
  <TypeSignature Language="C#" Value="public static class ABPersonInstantMessageKey" />
  <TypeSignature Language="ILAsm" Value=".class public auto ansi abstract sealed ABPersonInstantMessageKey extends System.Object" />
  <AssemblyInfo>
    <AssemblyName>MonoMac</AssemblyName>
    <AssemblyVersion>0.0.0.0</AssemblyVersion>
  </AssemblyInfo>
  <Base>
    <BaseTypeName>System.Object</BaseTypeName>
  </Base>
  <Interfaces />
  <Docs>
    <summary>
      <see cref="T:MonoMac.Foundation.NSDictionary" /> keys for use
      with <see cref="T:MonoMac.AddressBook.ABPerson" /> instant message
      services.
    </summary>
    <remarks>
      <para>
        A single <see cref="T:MonoMac.Foundation.NSDictionary" /> instance
        stores information regarding a single instant message service,
        with the dictionary keys and values holding information about different
        parts of the instant message service.
      </para>
      <code lang="C#">NSDictionary instantMessage = NSDictionary.FromObjectsAndKeys(
    new NSObject[]{
        ABPersonInstantMessageService.Jabber,
        new NSString ("user@example.org"),
    },
    new NSObject[]{
        ABPersonInstantMessageKey.Service,
        ABPersonInstantMessageKey.Username,
    }
);
ABMutableDictionaryMultiValue instantMessages = new ABMutableDictionaryMultiValue() {
    { address, ABLabel.Home },
};
ABPerson person = GetMeSomePerson();
person.SetInstantMessages(addresses);</code>
    </remarks>
    <altmember cref="M:MonoMac.AddressBook.ABPerson.GetInstantMessages" />
    <altmember cref="M:MonoMac.AddressBook.ABPerson.SetInstantMessages(MonoMac.AddressBook.ABMultiValue{MonoMac.Foundation.NSDictionary})" />
  </Docs>
  <Members>
    <Member MemberName="Service">
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString Service { get; }" />
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString Service" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>Represents the value associated with the constant kABPersonInstantMessageServiceKey</summary>
        <value>
          A <see cref="T:MonoMac.Foundation.NSString" /> containing the
          key to use for the Service portion of the instant message information.
        </value>
        <remarks>
        </remarks>
      </Docs>
    </Member>
    <Member MemberName="Username">
      <MemberSignature Language="C#" Value="public static MonoMac.Foundation.NSString Username { get; }" />
      <MemberSignature Language="ILAsm" Value=".property class MonoMac.Foundation.NSString Username" />
      <MemberType>Property</MemberType>
      <AssemblyInfo>
        <AssemblyVersion>0.0.0.0</AssemblyVersion>
      </AssemblyInfo>
      <ReturnValue>
        <ReturnType>MonoMac.Foundation.NSString</ReturnType>
      </ReturnValue>
      <Docs>
        <summary>Represents the value associated with the constant kABPersonInstantMessageUsernameKey</summary>
        <value>
          A <see cref="T:MonoMac.Foundation.NSString" /> containing the
          key to use for the Username portion of the instant message information.
        </value>
        <remarks>
        </remarks>
      </Docs>
    </Member>
  </Members>
</Type>